我刚刚了解了onfocusout
,onfocusin
,但这些功能似乎不起作用。我用firefox和chrome试了一下。完全没有控制台消息,即使我有焦点并松开它。我做错了什么?
window.addEventListener
(
"onfocusout",
function()
{
console.log("page lost focus");
}
);
window.addEventListener
(
"onfocusin",
function()
{
console.log("page has focus");
}
);
<h1>Test</h1>
答案 0 :(得分:3)
使用addEventListener时,不要将“on”与事件名称
一起使用
function example(evt) {
console.log(evt.type, event.target.id);
}
window.addEventListener("focusin", example);
window.addEventListener("focusout", example);
<input type="text" id="foo" />
<input type="text" id="bar" />
答案 1 :(得分:2)