禁止网页使用鼠标右键

   <script>
document.oncontextmenu = function(){
  return false;
}
document.onkeydown = function(){
  if (event.ctrlKey && window.event.keyCode==67){
    return false;
  }
}
document.body.oncopy = function (){
  return false;
}
//不建议连选中文本都不行
document.onselectstart = function(){
  //return false;
}
</script>

 

posted @ 2024-09-11 15:53    阅读(9)  评论(0编辑  收藏  举报