如何使用 jQuery 禁用右键点击?


若要禁用页面的右键点击,请使用 jQuery bind() 方法。

示例

你可以尝试运行以下代码以了解如何禁用右键点击

动态演示

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
   $(document).bind("contextmenu",function(e){
      return false;
   });
});
</script>
</head>
<body>

<p>Right click is disabled on this page.</p>

</body>
</html>

更新于:2019 年 12 月 11 日

3 千+ 浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告