當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > 編程其他 > 禁用鼠標(biāo)右鍵JS代碼怎么寫

禁用鼠標(biāo)右鍵JS代碼怎么寫

2012/10/23 12:20:18作者:佚名來源:網(wǎng)絡(luò)

移動端

【實(shí)例名稱】

禁用鼠標(biāo)右鍵

【實(shí)例描述】

為了保證網(wǎng)站的內(nèi)容不被非法拷貝,可以通過判斷鼠標(biāo)按鍵來禁止用戶操作。本例禁止用戶使用鼠標(biāo)右鍵。

【實(shí)例代碼】

<html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>無標(biāo)題頁</title> <script language="javascript">  function click()  {     if (event.button==2)      //單擊的鼠標(biāo)鍵為右鍵     {         alert('本網(wǎng)站禁用右鍵');     }  }  document.onmousedown=click;  //綁定事件 </script>

 

【運(yùn)行效果】

運(yùn)行效果

【難點(diǎn)剖析】

本例有兩個(gè)重點(diǎn):捕獲窗體的鼠標(biāo)事件和判斷用戶單擊的按鍵?!皁nmousedown”事件用來捕獲窗體的鼠標(biāo)事件;“event.button”判斷用戶單擊的按鍵,“1”表示左鍵,“2”表右鍵。

【源碼下載】

本實(shí)例JS代碼下載

 

標(biāo)簽: JS代碼  鼠標(biāo)