HTML事件属性onresize

HTML事件属性onresize


触发 onresize 属性事件当浏览器窗口调整大小时。

HTML5中的新功能

onresize 属性是HTML5中的新特性。

句法

<element onresize="script or Javascript function name">

支持的标签

<body>

浏览器兼容性

onresize Yes Yes Yes Yes Yes


例子

<!DOCTYPE html>
<html>

<body onresize="myFunction()">

<p>resize the browser window.</p>

<script>
function myFunction() {
    alert("resized!");
}
</script>

</body>
</html>

Click to view the demo