HTML事件屬性onresize
HTML事件屬性onresize
觸發(fā)onresize
屬性事件當(dāng)瀏覽器窗口調(diào)整大小時。
HTML5中的新功能
onresize
屬性是HTML5中的新特性。
句法
<element onresize="script or Javascript function name">
支持的標(biāo)簽
<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