Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

window.onresize

概述

onresize属性可以用来获取或设置当前窗口的resize事件的事件处理函数

语法

window.onresize = funcRef;

参数

  • funcRef 是一个函数引用

例子

window.onresize = doFunc;
<html>
<head>

<title>onresize测试</title>

<script type="text/javascript">

window.onresize = resize;

function resize()
{
 alert("检测到resize事件!");
}
</script>
</head>

<body>
<p>改变浏览器窗口的大小来触发resize事件.</p>
</body>
</html>

备注

在窗口大小改变之后,就会触发resize事件.

规范

不属于任何公开的规范

文档标签和贡献者

 此页面的贡献者: ziyunfei, teoli, khalid32, TigerSoldier
 最后编辑者: khalid32,