大家好!请问一下,为什么要把鼠标事件onmouseup设置在document上面,而不是在目标元素上呢?谢谢
视频中出现鼠标松开事件时老是的代码是
document.onmouseup = function(){...}
但为什么不是
targetElement.onmouseup = function(){...}
是不是document.onmouseup的容错率大?那在实际项目中一般来说是不是也是按照onmouseup事件放在document上面的写法呢?谢谢!
视频中出现鼠标松开事件时老是的代码是
document.onmouseup = function(){...}
但为什么不是
targetElement.onmouseup = function(){...}
是不是document.onmouseup的容错率大?那在实际项目中一般来说是不是也是按照onmouseup事件放在document上面的写法呢?谢谢!
2015-05-26
举报