Internet Explorer 8
<input id="txt" type"text" />
<input id="but" type="button" value="button1" />
document.getElementById("txt").attachEvent("onbeforedeactivate", function (ev) {
ev.returnEvent = false;
return false;
});
document.getElementById("but").attachEvent("onclick", function (ev) {
alert(99);
});
首先关注输入(type = text)
当我点击按钮时,我希望只有onbeforedeactivate事件触发,而onclik事件也会触发。
有解决方案吗?
答案 0 :(得分:0)
使用attachEvent
附加事件侦听器时,可以在window.event
属性中找到Event对象,而不是在回调函数的第一个参数中。