如何使用 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>

更新于: 11-12-2019

3K+ 浏览量

开启你的 职业

完成该课程以获得认证

开始学习
广告