window.open窗口居中和窗口最大化
2020-12-13 04:04
标签:style blog http color 使用 width 1、window.open()参数 window.open(pageURL,name,parameters) 其中: pageURL为子窗口路径 name为子窗口句柄 parameters为窗口参数(各参数用逗号分隔),如常用的 (yes/no也可使用1/0,在IE10中,toolbar、menubar等默认为no,所以需要显示时要设置为yes,尤其是scrollbars) 2、window.open()窗口居中 3、window.open()窗口最大化 如果写成这样: 结果会这样: 窗口铺满了整个屏幕,遮住了状态栏。不同操作系统状态栏高度不一,所以无法使screen.availHeight减去一个定值。 如果在新窗口的页面写成这样: 结果达到了效果: window.open窗口居中和窗口最大化,搜素材,soscw.com window.open窗口居中和窗口最大化 标签:style blog http color 使用 width 原文地址:http://www.cnblogs.com/yigeqi/p/3831598.html‘height=100,width=400,top=0,left=0,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no,titlebar=no‘
var l=(screen.availWidth-500)/2;
var t=(screen.availHeight-300)/2;
window.open(‘../seeImg/imgs.html‘,‘newWin‘,‘width=500,height=300,top=‘+t+‘,left=‘+l+‘,toolbar=no,menubar=no,location=no,status=yes‘);var w=screen.availWidth;
var h=screen.availHeight;
window.open(‘../seeImg/imgs.html‘,‘‘,‘width=‘+w+‘,height=‘+h+‘,top=0,left=0,status=yes‘);原窗口里:
window.open(‘../seeImg/imgs.html‘,‘‘,‘top=0,left=0,toolbar=no,menubar=no,location=no,status=no‘);
新窗口里:
.
.
.
function maxWin(){
window.top.moveTo(0,0);
window.top.resizeTo(screen.availWidth,screen.availHeight);
}
下一篇:python中的self