⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 changestyle.js

📁 电信的网厅的整站代码
💻 JS
字号:
// Example:
// alert( readCookie("cc_count_6_style") );
function readCookie(name)
{
  var cookieValue = "";
  var search = name + "=";
  if(document.cookie.length > 0)
  { 
    offset = document.cookie.indexOf(search);
    if (offset != -1)
    { 
      offset += search.length;
      end = document.cookie.indexOf(";", offset);
      if (end == -1) end = document.cookie.length;
      cookieValue = unescape(document.cookie.substring(offset, end))
    }
  }
  return cookieValue;
}
// Example:
// writeCookie("myCookie", "my name", 24);
// Stores the string "my name" in the cookie "myCookie" which expires after 24 hours.

function writeCookie(name, value)
{
  var expire = "";
    expire = new Date((new Date()).getTime() + 24 * 365 * 3600000);
    expire = "; expires=" + expire.toGMTString();
  document.cookie = name + "=" + escape(value) + expire;
}

function changeStyle(n){
	for(var i=1;i<document.styleSheets.length;++i){
			if(document.styleSheets[i].href)
				document.styleSheets[i].disabled=true;
		}
	/*
	var oCss = document.createElement("LINK");
	oCss.rel="stylesheet";
	oCss.type="text/css";
	oCss.href=(n?"./style/Sty0"+n+".css":"./style/main.css");
	document.body.appendChild(oCss)
	*/
	try{
		document.createStyleSheet(n?"./style/Sty0"+n+".css":"./style/main.css");
		
	}catch(e){
		//not ie?
	}
	writeCookie("cc_count_6_style",n);
}

var sCookiesStyle = readCookie("cc_count_6_style");
if(!parseInt(sCookiesStyle)) sCookiesStyle=1; 
changeStyle(sCookiesStyle);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -