我有一个绑定到focusin
/ focusout
个事件的文字输入。
$(element)
.focusin(function(e) {})
.focusout(function(e) {
var to = e.relatedTarget || e.toElement;
// undefined in chrome, fine in IE
});
在focusout
上,我对relatedTarget
信息感兴趣,即由于文本输入失去焦点而接收焦点的DOM元素,但此属性为事件的undefined
。
另一方面,toElement
,我认为是relatedTarget
的等价的互联网浏览器,可用。换句话说,我的focusout
处理程序在IE中运行良好,但在其他浏览器中运行不正确。
有上述限制的解决方法吗?
答案 0 :(得分:-1)