World Wide Web/javascript
[javascript]팝업창-오늘 하루 열지 않기
인천매력쟁이
2013. 5. 6. 11:02
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | jQuery(document).ready(function(){ checkCookie() }) function closeWin(obj) { if (obj == "1" ) { notice_setCookie( "pop20100719", "done" , 1); } document.getElementById("popup").style.display="none"; } function notice_setCookie( name, value, expiredays ) { var todayDate = new Date(); todayDate.setDate( todayDate.getDate() + expiredays ); document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";" } function checkCookie() { if(getCookie("pop20100719") == "done") { document.getElementById("popup").style.display="none"; } else { document.getElementById("popup").style.display=""; } } function getCookie( name ) { var nameOfCookie = name + "="; var x = 0; while ( x <= document.cookie.length ) { var y = (x+nameOfCookie.length); if ( document.cookie.substring( x, y ) == nameOfCookie ) { if ( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 ) endOfCookie = document.cookie.length; return unescape( document.cookie.substring( y, endOfCookie ) ); } x = document.cookie.indexOf( " ", x ) + 1; if ( x == 0 ) break; } return ""; } <!--//팝업--> <div class="popwrap" id="popup"> <div class="popwrapDiv"> <p class="txt"><img src="/common/images/popup/popService.gif" alt=""/></p> <div class="popBtDiv mt50"> <p class="txt01"><a href="javascript:" onclick=""><img src="" alt=""/><a/></p> <p class="txt02"><a href="javascript:" onclick="closeWin(1)"><img src="" alt=""/><a/></p> <p class="icon01"><a href="javascript:" onclick="closeWin(1)"><img src="" alt=""/><a/></p> </div> </div> </div> | cs |