js如何设置一个全站都能使用的cookie来记住用户名,记住访客的信息,方便访客下次的操作。js设置一个cookie网上有很多资料,但是只能在同目录下使用,其他地方就失效了。设置全局cookie只需加一个参数即可。
把 document.cookie=c_name+ "=" +escape(value)+
((expiredays==null) ? "" : ";expires="+exdate.toGMTString())
改成 document.cookie=c_name+ "=" +escape(value)+
(expiredays==null) ? "" : ";expires="+exdate.toGMTString())+"; path=/";
下面是完整范例:
<html>
<head>
<script type="text/javascript">
function getCookie(c_name)
{
if (document.cookie.length>0)
{
c_start=document.cookie.indexOf(c_name + "=")
if (c_start!=-1)
{
c_start=c_start + c_name.length+1
c_end=document.cookie.indexOf(";",c_start)
if (c_end==-1) c_end=document.cookie.length
return unescape(document.cookie.substring(c_start,c_end))
}
}
return ""
}
function setCookie(c_name,value,expiredays)
{
var exdate=new Date()
exdate.setDate(exdate.getDate()+expiredays)
document.cookie=c_name+ "=" +escape(value)+
((expiredays==null) ? "" : ";expires="+exdate.toGMTString())
}
function checkCookie()
{
username=getCookie('username')
if (username!=null && username!="")
{alert('Welcome again '+username+'!')}
else
{
username=prompt('Please enter your name:',"")
if (username!=null && username!="")
{
setCookie('username',username,365)
}
}
}
</script>
</head>
<body onLoad="checkCookie()">
</body>
</html>
注意:直接右键用浏览器打开是没有效果的,要放到站点下面才能起效。
文章出自:https://www.daixiaorui.com/read/6.html 本站所有文章,除注明出处外皆为原创,转载请注明本文地址,版权所有。
学习了!!想利用此技术来实现一个防止恶意点击网站竞价的功能。不知道能否实现。。