码迷,mamicode.com
首页 > 编程语言 > 详细

Javascript判断鼠标点击右击事件

时间:2017-08-21 14:46:59      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:prevent   去掉   mouse   text   test   event   margin   use   head   

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script type="text/javascript">
window.onload = function(){
//去掉默认的contextmenu事件,否则会和右键事件同时出现。
document.oncontextmenu = function(e){
e.preventDefault();
};
document.getElementsByTagName("body")[0].onmousedown = function(e){
if(e.button ==2){
alert("你点了右键");
}else if(e.button ==0){
alert("你点了左键");
}else if(e.button ==1){
alert("你点了滚轮");
}
}
}
</script>
</head>
<body>

<div style="width: 400px;height:400px;margin:auto;border:1px solid pink" id="test"></div>
</body>
</html>

Javascript判断鼠标点击右击事件

标签:prevent   去掉   mouse   text   test   event   margin   use   head   

原文地址:http://www.cnblogs.com/weiluguo/p/7404087.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!