我在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
请帮忙!感谢您阅读:)
答案 0 :(得分:1)
您可以像这样注册您的活动:
document.getElementById("sa").contentDocument.addEventListener('mouseout', function(event) {
event.stopPropagation()
console.log('out')
}, true)
但如果您的内容是跨域名,则最终可能会出现权限错误。