//禁用右键、文本选择功能、复制按键

//禁用右键、文本选择功能、复制按键
  $(document).bind("contextmenu",function(){return false;});
  $(document).bind("selectstart",function(){return false;});
  $(document).keydown(function(){return key(arguments[0])});

 

posted @ 2014-03-13 21:53  红色烈阳  阅读(125)  评论(0编辑  收藏  举报