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

📄 openwindow.js

📁 Harvestman-最新版本
💻 JS
字号:
function openAWindow( pageToLoad, winName, width, height, center){    xposition=0; yposition=0;    if ((parseInt(navigator.appVersion) >= 4 ) && (center)){        xposition = (screen.width - width) / 2;        yposition = (screen.height - height) / 2;    }                //0 => no        //1 => yes    var args = "";        args += "width=" + width + "," + "height=" + height + ","                + "location=0,"                + "menubar=0,"                + "resizable=0,"                + "scrollbars=0,"                + "statusbar=false,dependent,alwaysraised,"                + "status=false,"                + "titlebar=no,"                + "toolbar=0,"                + "hotkeys=0,"                + "screenx=" + xposition + ","  //NN Only                + "screeny=" + yposition + ","  //NN Only                + "left=" + xposition + ","     //IE Only                + "top=" + yposition;           //IE Only                //fullscreen=yes, add for full screen        // var dmcaWin = window.open(pageToLoad,winName,args );        // dmcaWin.focus();    //window.showModalDialog(pageToLoad,"","dialogWidth:650px;dialogHeight:500px");}

⌨️ 快捷键说明

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