码迷,mamicode.com
首页 > Web开发 > 详细

jquery阻止网页中右键的点击

时间:2015-01-17 12:38:27      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

 

 

<body onmousedown="whichElement(event)">

</body>

 

 

function whichElement(e) {

if (e.button == 2 || e.button == 4) {
alert("右键被阻止了");
$.preventDefault();//阻止右键
}

}

jquery阻止网页中右键的点击

标签:

原文地址:http://www.cnblogs.com/lideshun/p/4230217.html

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