手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >JS使用cookie设置样式的方法
JS使用cookie设置样式的方法
摘要:本文实例讲述了JS使用cookie设置样式的方法。分享给大家供大家参考,具体如下:varstyleShow=["blackgreen","p...

本文实例讲述了JS使用cookie设置样式的方法。分享给大家供大家参考,具体如下:

var styleShow = ["blackgreen", "purple"]; var path = "/"; var StyleSwitch = { //设置样式 setStyleSheet: function (StyleName) { var i, a, main; for (i = 0; (a = document.getElementsByTagName("link")[i]); i++) { if (a.getAttribute("rel").indexOf("Style") != -1 && a.getAttribute("title")) { a.disabled = true; if (a.getAttribute("title") == StyleName) { a.disabled = false; this.setCookie("Style", StyleName); } } } }, //获取当前使用样式 getStyleSheet: function () { var i, a; for (i = 0; (a = document.getElementsByTagName("link")[i]); i++) { if (a.getAttribute("rel").indexOf("Style") != -1 && a.getAttribute("title") && !a.disabled) { return a.getAttribute("title"); } } return null; }, //获取默认样式 getPreferredStyleSheet: function () { var i, a; for (i = 0; (a = document.getElementsByTagName("link")[i]); i++) { if (a.getAttribute("rel").indexOf("Style") != -1 && a.getAttribute("rel").indexOf("alt") == -1 && a.getAttribute("title") ) { return a.getAttribute("title"); } } return null; }, //获取cookie getCookie: function (name) { var cookieName = encodeURIComponent(name) + "=", cookieStart = document.cookie.indexOf(cookieName), cookieValue = null; if (cookieStart > -1) { var cookieEnd = document.cookie.indexOf(";", cookieStart); if (cookieStart == -1) { alert(-2); cookieEnd = document.cookie.length; } cookieValue = decodeURIComponent(document.cookie.substring(cookieStart + cookieName.length, cookieEnd)); } for (var i = 0; i < styleShow.length; i++) { if (cookieValue == styleShow[i]) { alert(styleShow[i]); return styleShow[i]; } } return styleShow[0]; }, //生成cookie //name cookie名 //value 值 //expires 过期时间 //path 路径 setCookie: function (name, value, expires, path, domain, secure) { var cookieText = encodeURIComponent(name) + "=" + encodeURIComponent(value) + ";"; if (expires instanceof Date) { cookieText += "expires=" + expires.toGMTString(); } if (path) { cookieText += ";path=" + path; } if (domain) { cookieText += ";domain=" + domain; } if (secure) { cookieText += ";secure"; } document.cookie = cookieText; }, //重置cookie unsetCookie: function (name, path, domain, secure) { this.set(name, "", new Date(0), path, domain, screen); } };

希望本文所述对大家JavaScript程序设计有所帮助。

【JS使用cookie设置样式的方法】相关文章:

使用RequireJS优化JavaScript引用代码的方法

JavaScript获得url查询参数的方法

jQuery仿gmail实现fixed布局的方法

js比较日期大小的方法

JS显示日历和天气的方法

JavaScript中使用自然对数ln的方法

在JS方法中返回多个值的方法汇总

JavaScript每天定时更换皮肤样式的方法

jQuery实现dialog设置focus焦点的方法

javascript清空table表格的方法

精品推荐
分类导航