将事件绑定到鼠标右键

将事件绑定到鼠标右键,第1张

事件绑定到鼠标右键

jQuery中没有内置的oncontextmenu事件处理程序,但是您可以执行以下 *** 作:

$(document).ready(function(){   document.oncontextmenu = function() {return false;};  $(document).mousedown(function(e){     if( e.button == 2 ) {       alert('Right mouse button!');       return false;     }     return true;   }); });

基本上,我取消了DOM元素的oncontextmenu事件以禁用浏览器上下文菜单,然后使用jQuery捕获mousedown事件,您可以在事件参数中知道按下了哪个按钮。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5621175.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存