
当网页浏览器窗口大小调整时,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>

