09-02
10

一个cookie控制的弹窗

<script>
function openpopup(){
window.open("http://www.xxx.com/","","width=300,height=300,scroolbars=no") //自己修改弹出窗口  
}  
function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) { // if cookie exists
offset += search.length
// set index of beginning of value
end = document.cookie.indexOf(";", offset);
// set index of end of cookie value
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}

function loadpopup(){
if (get_cookie('popped')!='yes'){
openpopup()
document.cookie="popped=yes"
}
}

</script>
</head>


</head>

<body onload="loadpopup()">


文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags: Cookie
相关日志:
评论: 0 | 引用: 0 | 查看次数: 361
发表评论
昵 称:
密 码: 游客发言不需要密码.
内 容:
验证码: 验证码
选 项:
虽然发表评论不用注册,但是为了保护您的发言权,建议您注册帐号.
字数限制 1000 字 | UBB代码 开启 | [img]标签 关闭