JavaScript:鼠标滚轮事件在文本框上方时不会触发
我需要一些帮助。 我正在尝试从 JavaScript 绑定到 mousewheel 事件,并且我已经成功完成了该操作。 但有些事情并不像我预期的那样。 当我完成输入时,事件不会触发。
我尝试绑定到鼠标轮的输入事件,但发生了同样的事情,事件没有触发。
I need some help. I am trying to bind to the mousewheel event from JavaScript and I've successfully done that. But something doesn't work quite as I expected. When I am over an input the event doesn't fire.
I have tried to bind to the input's event for the mousewheel but the same thing happens, the event doesn't fire.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此事件并未得到普遍支持。 在执行任何操作之前先检查鼠标滚轮兼容性表。 我发现有趣的是像 jQuery 这样的 JavaScript 库 没有实现 这个特定事件的包装器。 如果您打算使用 jQuery,人们会为此构建插件:
更新< /strong>
你必须稍微修改一下他们的例子。 在这里,这适用于
HTML 代码
对于输入字段,使用 val() 而不是 text()。
This event is not universally supported. Check mousewheel compatibility table before anything. What I find interesting is that javaScript libraries like jQuery didn't implemented wrappers for this particular event. If you plan to use jQuery people build plugins for this:
UPDATE
You have to modify a little their example. Here, this works
HTML code
For an input field use val() instead of text().