禁止網頁使用滑鼠右鍵

發表於2024-09-11
   <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>

相關文章