使用cookie防止恶意点击
/设置cookie,避免恶意点击/
function setCookie(key,value,times)
{
var exdate=new Date();
exdate.setTime(exdate.getTime()+(times*60*1000));//times如果是6,代表cookie的生命周期是6分钟
document.cookie=key+ "=" +escape(value)+
((times==null) ? "" : ";expires="+exdate.toGMTString());
}
function getCookie(key)
{
if (document.cookie.length>0)
{
c_start=document.cookie.indexOf(key + "=");
if (c_start!=-1)
{
c_start=c_start + key.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 null;
}
/*点击按钮时判断*/
jQuery("# btn").click(function(){
if(!getCookie('test')) {
setCookie('test',123,30);//cookie存活时间30分钟
}else{
alert('You have commented on it....');
}
});
关键字:cookie
版权声明
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处。如若内容有涉嫌抄袭侵权/违法违规/事实不符,请点击 举报 进行投诉反馈!