當視窗調整大小時,會觸發resize事件。在JavaScript中使用 window.outerWidth和window.outerHeight事件來取得瀏覽器調整大小時的視窗大小。
你可以嘗試執行以下程式碼來使用JavaScript中的onresize事件。
<!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中,onresize事件的用途是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!