+ -
当前位置:首页 → 问答吧 → 打開的新視窗可以控制其大小嗎?

打開的新視窗可以控制其大小嗎?

时间:2010-10-26

来源:互联网

各位大大,


程式码:
<form name="aaa" id="aaa" action="newWindow.php" onsubmit="return check_data();" method="post" target="_blank" >

用window.open好像速度会比较慢.
要怎么控制新开的视窗大小??

作者: swcjason   发布时间: 2010-10-26

引用自: NARs 於 2010-10-26 15:02
各位大大,
程式码:
<form name="aaa" id="aaa" action="newWindow.php" onsubmit="return check_data();" method="post" target="_blank" >
用window.open好像速度会比较慢.
要怎么控制新开的视窗大小??


window.resizeTo() 吗?

http://www.w3schools.com/jsref/met_win_resizeto.asp

作者: NARs   发布时间: 2010-11-09

function Dialog(url,name,w,h){
   var top=(screen.height-h)/3;
   var left=(screen.width-w)/2;
   return showModalDialog(url,name,'dialogLeft:'+left+'px;dialogTop:'+top+'px;dialogWidth:'+w+'px;dialogHeight:'+h+'px;help:no;scroll:yes;status:yes;');
}

作者: Yamaka   发布时间: 2010-12-02