JS专用鼠标按键
我的鼠标侧面有两个按钮,其默认行为是“后退”和“前进”。
我想知道的是是否可以在 JavaScript 中检测这些鼠标按钮的点击,或者这些按钮是否是类似于键盘的“播放”、“音量调高”和“无线开/关”的“特殊”按钮按钮。
My mouse has two buttons on the side, whose default behaviour are "Back" and "Forward".
What I'd like to know is whether or not it's possible to detect clicks of these mouse buttons in JavaScript, or if these are "special" buttons akin to the keyboard's "Play", "Volume Up" and "Wireless on/off" buttons.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道任何特定的鼠标事件。
不过,您可以通过检查
mousedown
事件的event
对象轻松找到答案。 全屏小提琴:http://jsfiddle.net/dWfDL/1/show/I am not aware of any specific mouse events.
You can, however, easily find out yourself by inspecting the
event
object of themousedown
event. Fullscreen fiddle: http://jsfiddle.net/dWfDL/1/show/