javascript – 没有右键单击事件Firefox 3.6
作者:互联网
我正在将应用程序移植到JavaScript / CSS并使用右键单击.出于某种原因,Firefox 3.6 for Windows没有发布右键单击事件,但Chrome和IE可以.这是一些测试代码.如果你右键单击#test,那么你在Firefox中什么也得不到,但是你会在Chrome和IE下获得警报.
<html>
<head>
<title>Hi</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
$("#test").get(0).oncontextmenu = function() { return false; };
$("#test").mousedown(function() { alert("hi"); });
});
</script>
</head>
<body>
<div id="test" style="background: red;">Hi</div>
</body>
</html>
为什么不在Firefox中生成右键单击事件?
解决方法:
我发现了这个问题.我安装了“All-in-One Gestures”扩展程序.我尝试禁用它运行代码,它工作正常.看起来像扩展的错误/限制.
更新:我刚试过“Mouse Gestures Redox”扩展,它没有这个问题.
标签:jquery,javascript,events,firefox,right-click 来源: https://codeday.me/bug/20190610/1213689.html