您可以使用 cookie 来存储状态并简单检查 cookie 是否存在以及值是什么。有没有cookie,开关做默认。
function setCookie(c_name,value,exdays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value;
}
function getCookie(c_name)
{
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++)
{
x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
x=x.replace(/^\s+|\s+$/g,"");
if (x==c_name)
{
return unescape(y);
}
}
}
function checkCookie()
{
var theme=getCookie("theme");
if (theme!=null && theme!="")
{
setTheme(theme);
}
else
{
theme="light";
if (theme!=null && theme!="")
{
setCookie("theme",theme,365);
}
}
}