<script src="/abn/include/js/jquery-1.7.1.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("ul#ulOne li").click(function(){
//console.log($('li').index(this)); //return index,index start from zero(0)
//클릭한 배너에 쿠키가 없으면 전체 카운트
if( getCookie('cookPop_'+$(this).attr('id')) ){
console.log("쿠키명 같음");
}else{
console.log("쿠키명 셋팅");
setCookie('cookPop_'+$(this).attr('id'), $(this).attr('id'), 365);
}
//console.log( $("span.abnPop").html());
$("span.abnPop").html( getCookie('cookPop_'+$(this).attr('id')) );
});
});
function setCookie(name, value, days) {
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
var expires = "; expires=" + date.toGMTString();
} else {
var expires = "";
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function getCookie(name) {
var i, x, y, ARRcookies = document.cookie.split(";");
for (i = 0; i < ARRcookies.length; i++) {
x = ARRcookies[i].substr(0, ARRcookies[i].indexOf("="));
y = ARRcookies[i].substr(ARRcookies[i].indexOf("=") + 1);
x = x.replace(/^\s+|\s+$/g, "");
if (x == name) {
return unescape(y);
}
}
</script>
':::: 개발 :::: > ::: A S P :::' 카테고리의 다른 글
asp 모든 세션 루프로 출력하기 (0) | 2014.12.01 |
---|---|
dext upload 참고 (0) | 2014.11.12 |
JSP Split 메소드 이용 하여 문자 자르기 트 (0) | 2010.06.22 |
[본문스크랩] [Ajax] ASP와 연동하여 우편번호 검색하기 (0) | 2009.12.28 |
[본문스크랩] [Ajax]간단한 팝업메뉴 비동기 호출하기 (0) | 2009.12.28 |
[본문스크랩] ASP 내장함수 (0) | 2009.12.28 |
[본문스크랩] Formatcurrency (0) | 2009.12.28 |
[본문스크랩] Request와 Response 객체 활용 (1) | 2009.12.28 |