使用window.outerWidth和window.outerHeight事件在JavaScript中取得視窗大小,當瀏覽器調整大小時。
您可以嘗試執行以下程式碼來使用事件檢查瀏覽器視窗大小 −
<!DOCTYPE html> <html> <head> <script> function resizeFunction() { var val = "Window Width=" + window.outerWidth + ", Window Height=" + window.outerHeight; document.getElementById("test").innerHTML = val; } </script> </head> <body onresize = "resizeFunction()"> <p>Resize browser window and check the window (browser window) height and width again.</p> <p id = "test"> </p> </body> </html>
以上是在JavaScript中,當瀏覽器視窗調整大小時,這是哪個事件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!