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