搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
HTML参考手册
HTML 事件
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <title>HTML onresize 事件属性的使用(大卫编程网 div.cn)</title> </head> <body onresize="myFunction()"> <p>Try to resize the browser window.</p> <script> function myFunction() { alert("You have changed the size of the browser window!"); } </script> </body> </html>
运行结果