當網頁瀏覽器視窗大小調整時,onresize 屬性會觸發。
您可以嘗試執行下列程式碼實作 onresize 屬性 -
<!DOCTYPE html> <html> <body onresize = "display()"> <p>Resize the window to trigger event.</p> <script> function display() { alert("Web browser window resized!"); } </script> </body> </html>
以上是當瀏覽器視窗大小改變時,在HTML中執行一個腳本嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!