复件 open.js
来自「Lirong网络办公系统」· JavaScript 代码 · 共 28 行
JS
28 行
function IEVer()
{
var str=navigator.appVersion
var loca=str.indexOf('MSIE') +5
return parseInt(str.substr(loca))
}
if(IEVer()>=6)
{
if(screen.width==800 )
{
window.open('main/common.asp','lrmismainframe','resizable=yes,width=790,height=565,left=0,top=0');
};else
{
window.open('main/common.asp','lrmismainframe','resizable=yes,width=790,height=600,left=120,top=70');
}
window.close()
};
else
{
window.location.href='main/common.asp'
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?