<html>
<head>
<script type="text/javascript">
function getCookie(c_name) // 提取 cookies中 c_name=OOXX 中的OOXX 无则返回""
{
if (document.cookie.length>0)
{
c_start=document.cookie.indexOf(c_name + "=") //indexOf 相当于 strchr
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) // c_name=escape(value);GMT时间
{
var exdate=new Date()
exdate.setDate(exdate.getDate()+expiredays) // escape 是为了能方便存入流的特殊符号转换函数
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)
}
}
}
function clearCookie() //自己加的清除cookies 试了直接 document.cookie="" 无效…有更好的方法么?
{
try{
document.cookie="username="
}
catch(err)
{
txt = "error\n\n"
confirm(txt)
}
}
</script>
</head>
<body onLoad="checkCookie()">
<input type="button" onclick="clearCookie()" value="清除Cookie" />
</body>
</html>
-
近期文章
近期评论
- 树欲静而风不止发表在《最近的一件小事》
- 桃子多肉发表在《最近的一件小事》
- 匿名发表在《4月10日 勇敢与懦弱》
- admin发表在《Windows 下获取多核CPU使用率》
- 匿名发表在《Windows 下获取多核CPU使用率》
分类目录
文章归档
- 2024年4月
- 2023年7月
- 2023年2月
- 2022年12月
- 2022年9月
- 2022年7月
- 2022年6月
- 2022年3月
- 2022年2月
- 2021年9月
- 2020年9月
- 2020年8月
- 2020年3月
- 2019年12月
- 2019年11月
- 2017年9月
- 2017年7月
- 2017年6月
- 2017年2月
- 2016年1月
- 2015年12月
- 2015年10月
- 2015年8月
- 2015年4月
- 2015年2月
- 2015年1月
- 2014年11月
- 2014年10月
- 2014年9月
- 2014年8月
- 2014年4月
- 2014年2月
- 2014年1月
- 2013年12月
- 2013年11月
- 2013年10月
- 2013年9月
- 2013年7月
- 2013年6月
- 2013年5月
- 2013年4月
- 2013年3月
- 2013年2月
- 2013年1月
- 2012年12月
- 2012年11月
- 2012年10月
- 2012年9月
- 2012年8月
- 2012年6月
- 2012年5月
- 2012年4月
- 2012年3月
- 2012年2月
- 2011年12月
- 2011年11月
- 2011年10月
- 2011年9月
- 2011年8月
- 2011年7月
- 2011年6月
- 2011年5月
- 2011年4月
- 2011年3月
- 2011年2月
- 2011年1月
- 2010年12月
- 2010年11月
- 2010年10月
- 2010年9月
- 2010年8月
- 2010年7月
- 2010年6月
- 2010年5月
- 2010年4月
- 2010年3月
- 2010年2月
- 2010年1月
- 2009年12月
- 2009年11月
- 2009年10月
- 2009年9月
- 2009年8月
- 2009年7月
- 2009年6月
- 2009年5月
功能