1.如何让网页全屏显示
先在内插入如下JS:
function winopen(){
var targeturl=" "
newwin=window.open("","","scrollbars");
if(document.all){
newwin.moveTo(0,0)//新窗口的坐标
newwin.resizeTo(screen.width,screen.height)
//此处可设置窗口大小,如(1024, 768),不设置的话为全屏
}
newwin.location=targeturl;
}
在需要的地方调用winopen()函数即可,如下。
打开网页时调用全屏:
把写成
按钮调用全屏:
1、
2、
Fla
转载请注明出处windows之家 » win10设置网页全屏