1. 程式人生 > >禁用瀏覽器鼠標右擊事件、全選事件

禁用瀏覽器鼠標右擊事件、全選事件

禁用 右擊事件 ava doc ondrag ext UNC function star

1、鼠標右鍵觸發事件

  function click() 
  {  
   if(event.button==2) 
     { 
        alert(‘hello。。。。。。‘)  
     }  
  }  
  document.onmousedown=click  

2、讓鼠標右鍵失效

<body oncontextmenu=self.event.returnValue=false> 

3、是頁面文字內容無法選擇或全選

<body ondragstart="window.event.returnValue=false" oncontextmenu="window.event.returnValue=false"
onselectstart="event.returnValue=false">

禁用瀏覽器鼠標右擊事件、全選事件