1/1 페이지 열람 중
<div id="sir">그누보드</div><script> sir.style.background="blue"; with (sir) { innerText = "비타주리"; with (style) { color = "#ff0000"; padding = "10px"; border = "1px solid #cccccc"; borderRadius = "10px…
<link rel="stylesheet" href="<?= G5_PLUGIN_URL ?>/WOW-master/css/libs/animate.css"> <link rel="stylesheet" href="<?= G5_PLUGIN_URL ?>/WOW-master/css/site.css"> <div class="cont03_title wow bounceIn"> <img src=…
$('#etrust').attr({action:'http://www.etrust.or.kr:8080/jsp/open/eTrust_info.jsp', method:'post'}).submit();
//현재 날짜 객체를 얻어옴. var gdCurDate = new Date(); //현재 날짜에 날짜 게산. gdCurDate.setYear( gdCurDate.getFullYear()); //여기에 년도 더하기 gdCurDate.setMonth( gdCurDate.getMonth()); //여기에 달 더하기 gdCurDate.setDate( gdCurDate.getDate()+eval(val2)); //여기에 일 더하기 eval=숫자형으로 변경 //실제 사용할 연, 월, 일 변수 받기. var giYea…
JavaScript 에서보내고 –> PHP 받을때 encodeURIComponent( string ) --> rawurldecode( iconv( "UTF-8", "CP949", $string ) ); PHP 에서 보내고 –> JavaScript 받을때 rawurlencode( iconv( "CP949", "UTF-8", $string ) ) --> decodeURIComponent( string );