欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

浏览器最大化问题

程序员文章站 2022-06-04 07:56:30
...

方式一

 

1、js

<SCRIPT LANGUAGE="javascript">
function winSizer(){
windowWidth = window.screen.availWidth;
windowHeight = window.screen.availHeight;
window.moveTo(0,0);
window.resizeTo(windowWidth,windowHeight);
}
</SCRIPT>

2、在body中调用js
<body onLoad="winSizer()">
</body>

 

方式二

 

<body   onload= "window.open( ' ', 'max ', 'top=0,left=0,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width= '+(screen.width-10)+ ',height= '+(screen.availheight-30)) ">
</body>

 

 

方式三

 

<script>
function   tofull(){
var   file   =self.location;
var   a   =  

window.open( 'about:blank ', ' ', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=

no,resizable=yes ') ;
self.opener=null ;
self.close() ;
a.focus();
a.location=file;
}
</script>