如何獲得和使用JavaScript設置如何獲取和設置窗口彈出的高度和寬度在Internet Explorer
在Firefox中我能夠設置高度和寬度使用outerHeight窗口彈出高度和寬度Internet Explorer中 ,窗口的outerWidth屬性。
謝謝。
如何獲得和使用JavaScript設置如何獲取和設置窗口彈出的高度和寬度在Internet Explorer
在Firefox中我能夠設置高度和寬度使用outerHeight窗口彈出高度和寬度Internet Explorer中 ,窗口的outerWidth屬性。
謝謝。
如果它是一個現有的窗口,您可以設置使用window.resizeTo
(MSDN link)大小:
window.resizeTo(640, 480)
或者,您可以指定大小時,窗口的存在使用window.open
方法(MSDN link)創建:
window.open ("http://stackoverflow.com",
"mywindow","location=1,status=1,scrollbars=1,
width=640,height=480");
window.open('something.html','new_win','width=320,height=240');