即使鼠标静止不动,也会调用 jQuery mousemove()
对我来说,如果我尝试这个例子: http://jsfiddle.net/bY3CC/3/即使我将鼠标移到文档上然后保持不动,也会出现“鼠标已移动”文本...
这是为什么? ;\
而且,似乎该消息只出现在 Chrome 中......
奇怪:-s
For me, if I try this example: http://jsfiddle.net/bY3CC/3/ the "mouse moved" text appears even if I move my mouse over the document and then I let it still...
Why's that? ;\
And also, seems like the message only appears in Chrome....
Strange :-s
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
存储 x、y 坐标
Store the x, y co-ordinates
全局
event
对象是非标准的,因此它仅存在于某些浏览器中,例如 IE(可能仅在怪异模式下)以及 Chrome 中。接受事件对象作为事件处理程序的参数:
jsfiddle.net/bY3CC/5/
The global
event
object is non-standard, so it only exists in some browsers, like IE (perhaps only in quirks mode) and appearently in Chrome.Accept the event object as a parameter to the event handler:
jsfiddle.net/bY3CC/5/