JS实现清除指定cookies的方法
更新时间:2014年09月20日 09:46:52 投稿:shichen2014
这篇文章主要介绍了JS实现清除指定cookies的方法,在web程序设计中非常实用,需要的朋友可以参考下
本文实例讲述了JS实现清除指定cookies的方法,非常实用。分享给大家供大家参考。
具体实现代码如下:
function GetCookieValue(name) { var cookieValue = null; if (document.cookie && document.cookie != '') { var cookies = document.cookie.split(';'); for (var i = 0; i < cookies.length; i++) { var cookie = jQuery.trim(cookies[i]); //PYYH=USERNAME=steven&PASSWORD=111111&UserID=1&UserType=1 if (cookie.substring(0, name.length + 1) == (name + '=')) { cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); //USERNAME=steven&PASSWORD=111111&UserID=1&UserType=1 break; } } } return cookieValue; } function DelCookie(name) { var exp = new Date(); exp.setTime(exp.getTime() + (-1 * 24 * 60 * 60 * 1000)); var cval = GetCookieValue(name); document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString(); } function exit() { DelCookie("PYYH"); window.location.replace("http://localhost:7877/index.aspx"); }
希望本文所述对大家js WEB前端程序设计的学习有所帮助。
相关文章
PHP实现基于Redis的MessageQueue队列封装操作示例
这篇文章主要介绍了PHP实现基于Redis的MessageQueue队列封装操作,结合实例形式分析了Redis的PHP消息队列封装与使用相关操作技巧,需要的朋友可以参考下2019-02-02Array数组对象中的forEach、map、filter及reduce详析
这篇文章主要给大家介绍了关于Array数组对象中forEach、map、filter及reduce的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用array数据具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2018-08-08javascript当中的代码嗅探扩展原生对象和原型(prototype)
如果不是有特殊需要而去扩展原生对象和原型(prototype)的做法是不好的,除非这样做是值得的,例如,向一些旧的浏览器中添加一些ECMAScript5中的方法2013-01-01
最新评论