源代码:
下载代码
AI 编程工具
点击运行
<!DOCTYPE html> <html> <meta charset="utf-8"> <title>菜鸟教程(runoob.com)</title> <head> <script> function showMsg() { alert("您已经更改了浏览器窗口的大小!"); } </script> </head> <body onresize="showMsg()"> <p>调整浏览器窗口。</p> </body> </html>
运行结果: