MouseEvent.button - Web API 接口参考 编辑
MouseEvent.button
是只读属性,它返回一个值,代表用户按下并触发了事件的鼠标按键。
这个属性只能够表明在触发事件的单个或多个按键按下或释放过程中哪些按键被按下了。因此,它对判断mouseenter
, mouseleave
, mouseover
, mouseout
mousemove
这些事件并不可靠。
用户可能会改变鼠标按键的配置,因此当一个事件的MouseEvent.button
值为0时,它可能不是由物理上设备最左边的按键触发的。但是对于一个标准按键布局的鼠标来说就会是左键。
注意:MouseEvent.buttons
属性可指示任意鼠标事件中鼠标的按键情况,因此不要把它和MouseEvent.button属性弄混淆了。
语法
var buttonPressed = instanceOfMouseEvent.button
返回值
一个数值,代表按下的鼠标按键:
0
:主按键,通常指鼠标左键或默认值(译者注:如document.getElementById('a').click()这样触发就会是默认值)1
:辅助按键,通常指鼠标滚轮中键2
:次按键,通常指鼠标右键3
:第四个按钮,通常指浏览器后退按钮4
:第五个按钮,通常指浏览器的前进按钮
对于配置为左手使用的鼠标,按键操作将正好相反。此种情况下,从右至左读取值。
示例
HTML
<button id="button" oncontextmenu="event.preventDefault();">Click here with your mouse...</button>
<p id="log"></p>
JavaScript
let button = document.querySelector('#button');
let log = document.querySelector('#log');
button.addEventListener('mouseup', logMouseButton);
function logMouseButton(e) {
if (typeof e === 'object') {
switch (e.button) {
case 0:
log.textContent = 'Left button clicked.';
break;
case 1:
log.textContent = 'Middle button clicked.';
break;
case 2:
log.textContent = 'Right button clicked.';
break;
default:
log.textContent = `Unknown button code: ${e.button}`;
}
}
}
结果
规范
Specification | Status | Comment |
---|---|---|
Document Object Model (DOM) Level 3 Events Specification MouseEvent.button | Obsolete | Compared to Document Object Model (DOM) Level 2 Events Specification, the return value can be negative. |
Document Object Model (DOM) Level 2 Events Specification MouseEvent.button | Obsolete | Initial definition. |
浏览器兼容性
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
参阅
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论