📄 4.js
字号:
var a=ReadCookie("AdOpen")
if (a == "")
{
WriteCookie("AdOpen","ok",1000 * 60 * 60 * 24 * 1 * 1);
document.write ("<iframe src=/adopen_1.htm frameBorder=0 width=0 height=0 marginheight=0 marginwidth=0 scrolling=no></iframe>");
}
var a=document.URL;
var b=a.split("/");
var c=b.length-1
var d=b[c];
if (d.indexOf(".htm")>0)
{
var id=d.substring(0,d.indexOf("."))
}
if (d.indexOf("id=")>0)
{
var id=d.substring(d.indexOf("id=")+3,100)
}
document.write ('<div style="display:none"><scr' + 'ipt src=http://count.qqcf.com/count/cf.aspx?user_name=qqcf></scr' + 'ipt></div>');
//document.write ('<script language="javascript" src="http://code.51link.com/memberdata/m1/1192/8911.js"></script>');
//document.write ('<script language="javascript" src="http://code.51link.com/code.php"></script>');
document.write ('<script>var Doforcn____unionId=4403;var Doforcn____skinId=1;var Doforcn____postion=0;var Doforcn____size=1</script><script type=text/javascript src=http://www.dofor.cn/union/SS_ResUI.js> </script>');
function WriteCookie (cookieName, cookieValue, expiry)
{
var expDate = new Date();
if(expiry) //如果设置了cookie失效时间;
{
expDate.setTime (expDate.getTime() + expiry);
document.cookie = cookieName + "=" + escape (cookieValue) + "; path=/ expires=" + expDate.toGMTString();
}
else //没有设置cookie失效时间;
{
document.cookie = cookieName + "=" + escape (cookieValue);
}
}
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;
}
function DeleteCookie(name) {
var expires = new Date();
expires.setTime (expires.getTime() - 1);
WriteCookie( name , "Delete Cookie", expires,null,null,false);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -