javascript onbeforedeactivate

时间:2011-06-23 11:10:18

标签: html javascript-events

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事件也会触发。
有解决方案吗?

1 个答案:

答案 0 :(得分:0)

使用attachEvent附加事件侦听器时,可以在window.event属性中找到Event对象,而不是在回调函数的第一个参数中。