?? sys.js
字號:
var i = 0;
function callhtm(URL,Width,Height)
{
i++;
var l = ((window.screen.width-parseInt(Width))/2);
var t = ((window.screen.height-parseInt(Height))/2);
window.open(URL,'n'+i,'top='+t+',left='+l+', width='+Width+', height='+Height+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
if(i>1000)i=-1;
}
function callSys(URL,Width,Height)
{
i++;
var l = ((window.screen.width-parseInt(Width))/2);
var t = ((window.screen.height-parseInt(Height))/2);
window.open(URL,'b'+i,'top='+t+',left='+l+', width='+Width+', height='+Height+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
if(i>1000)i=-1;
}
function callSysWithScroll(URL,Width,Height)
{
i++;
var l = ((window.screen.width-parseInt(Width))/2);
var t = ((window.screen.height-parseInt(Height))/2);
window.open(URL,'b'+i,'top='+t+',left='+l+', width='+Width+', height='+Height+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
if(i>1000)i=-1;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -