?? system.js
字號:
/*
Copyright 2001~2002 WWW.ZWCITY.COM 易影中國. All rights reserved.
Write by 2002-4-1
Edit by XiaoZeLin
Emailto: XiaoZeLin@163.net
HomePage: http://www.zwcity.com
Address: Shantou Guangdong China
*/
isIE = (document.all ? true : false);
isNS = (document.layers ? true : false);
function getFromID(eltname){
if (isIE) return document.all[eltname];
else if (isNS) return document.layers[eltname];
else return false;
}
function getXBrowserRef(eltname) {
return (isIE ? document.all[eltname].style : document.layers[eltname]);
}
function hideElement(eltname) {getXBrowserRef(eltname).visibility = 'hidden';}
function getIEPos(elt,which) {
iPos = 0
while (elt!=null) {
iPos += elt["offset" + which]
elt = elt.offsetParent
}
return iPos
}
function getIEPosX(elt) { return getIEPos(elt,"Left"); }
function getIEPosY(elt) { return getIEPos(elt,"Top"); }
function setPosition(elt,positionername,moveX,moveY) {
positioner = document.all[positionername];
elt = getXBrowserRef(elt);
elt.left = getIEPosX(positioner);
elt.top = getIEPosY(positioner);
elt.visibility = 'visible';
if (moveX!=null) elt.left = elt.pixelLeft + moveX;
if (moveX!=null) elt.top = elt.pixelTop + moveY;
}
var html_head =
'<html>\n'+
'<head>\n'+
'<meta http-equiv="Pragma" content="no-cache">\n'+
'<meta http-equiv="Window-target" content="_top">\n'+
'<meta http-equiv="Content-Language" content="zh-cn">\n'+
'<meta http-equiv="Content-Type" content="text/html; charset=gb2312">\n'+
'<title>易影中國</title>\n'+
'</head>\n'+
'<style>\n'+
'body{margin:0px;scrollbar-face-color:buttonface;scrollbar-highlight-color:buttonface;scrollbar-shadow-color:buttonface;scrollbar-3dlight-color:buttonhighlight;scrollbar-arrow-color:#797979;scrollbar-track-color:#EEEEEE;scrollbar-darkshadow-color:buttonshadow}\n'+
'body,a,table,div,span,td,th,input,select{font:9pt;font-family: "宋體", Verdana, Arial, Helvetica, sans-serif;}\n'+
'.text{border:1 solid buttonface;background-color:buttonhighlight}\n'+
'.button{height:18;border:1 ridge buttonhighlight;background-color:buttonface}\n'+
'#box{width:9pt;height:9pt;}\n'+
'</style>\n'+
'<body border=0 marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 onSelectStart="event.returnValue=false;" onConTextMenu="event.returnValue=false">';
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -