JS:文档/窗口上的mouseout事件

时间:2016-04-13 05:14:10

标签: javascript

我在mouseout / window对象上添加了document个事件监听器 我想在将光标移动到页面中的iframe时触发此事件,但它也会触发正文中的其他元素。

document.addEventListener('mouseout', function(event) {
   event.stopPropagation()
   console.log('out')
}, true)
// not working so I try adding this event to widow

window.addEventListener('mouseout', function(event) {
   event.stopPropagation()
   console.log('out')
}, true)
// not working too

请帮忙!感谢您阅读:)

1 个答案:

答案 0 :(得分:1)

您可以像这样注册您的活动:

document.getElementById("sa").contentDocument.addEventListener('mouseout', function(event) {
   event.stopPropagation()
   console.log('out')
}, true)

但如果您的内容是跨域名,则最终可能会出现权限错误。