中文(简体)
<!-- 将以下代码添加到<body>区域中 --> <script language=javascript> function getCookie(name) { var cookiefound=false var start=0 var end=0 var cookiestring=document.cookie;变量 i = 0; while (i<=cookiestring.length) { start=i end=start+name.length if (cookiestring.substring(start,end)==name) {cookiefound=true;休息;我++; } if (cookiefound==true) { 开始=结束+1; end=cookiestring.indexOf(";",start); if (end<start) { end=cookiestring.length;} return cookiestring.substring(start,end); } 返回 ””; } function newcookie(id,value,guoqi) { var expires=new Date() expires.setTime(expires.getTime()+24*60*60*30*1000) //30为天数,可改为任意数字 var expiryDate=expires.toGMTString(); document.cookie=id+"="+value+";expires="+expiryDate } if (getCookie("Alerted")=="") {alert("弹出了") newcookie("Alerted","yes") }否则{}</脚本>