如何在Js脚本中,默认打开一个全屏的窗口,

2024-12-25 07:29:44
推荐回答(2个)
回答1:

只能传递参数了,高度和宽度需要你通过js去取。
屏幕高度 window.screen.height;
屏幕宽度 window.screen.width;

回答2:

function abc(){
var config_="left=0,top=0,width="+(window.screen.Width)+",height="+(window.screen.Height);
window.open("你的目标窗口","winHanle",config_);
}