您现在的位置: 365建站网 > 建站教程 > JavaScript 教程 > button 事件属性

button 事件属性

此节有 120 人学习过     参与评论

定义和用法

button 事件属性可返回一个整数,指示当事件被触发时哪个鼠标按键被点击。

语法

event.button=0|1|2
参数 描述
0 规定鼠标左键。
1 规定鼠标中键。
2 规定鼠标右键。

Internet Explorer 拥有不同的参数:

参数 描述
1 规定鼠标左键。
4 规定鼠标中键。
2 规定鼠标右键。

提示和注释

注释:对于惯用左手的鼠标配置,上面的参数是颠倒的。

提示:Mozilla 的 Ctrl–Click 参数是 2 (等价于右击)。

实例

The following example alerts which mouse button was clicked:

<html>
<head>
<script type="text/javascript">
function whichButton(event)
  {
    if (event.button==2)
      {
      alert("You clicked the right mouse button!")
      }
    else
      {
      alert("You clicked the left mouse button!")
      }
  }
</script>
</head>

<body onmousedown="whichButton(event)">
	
<p>Click in the document. An alert box will 
alert which mouse button you clicked.</p>

</body>
</html>

亲自试一试

button
检测哪个鼠标键被点击了。

如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛

发表评论 (120人查看0条评论)
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
昵称:
最新评论
------分隔线----------------------------
JavaScript 教程目录

快速入口

· 365软件
· 杰创官网
· 建站工具
· 网站大全

其它栏目

· 建站教程
· 365学习

业务咨询

· 技术支持
· 服务时间:9:00-18:00
365建站网二维码

Powered by 365建站网 RSS地图 HTML地图

copyright © 2013-2024 版权所有 鄂ICP备17013400号