在我的 html 中:
<body onresize="doSomething();">
我的 javascript 中有这个:
function doSomething() {
alert(1);
// it doesn't actually have alert(1), but this is just for demonstration
}
当我调整浏览器窗口的大小(通过双击其标题)时,该事件会在 IE8 中触发两次,从而弄乱了该功能。
有谁知道为什么以及如何避免它?提前致谢!