jquery禁用右键、文本选择功能、复制的代码
摘要:
1 //禁用右键、文本选择功能、复制按键 2 $(document).bind("contextmenu",function(){return false;}); 3 $(document).bind("selectstart",function(){return false;}); 4 $(document).keydown(function(){return key(argument... 阅读全文
posted @ 2016-05-28 23:31 jasonduanmu 阅读(6091) 评论(0) 推荐(0) 编辑