aspx頁面禁用滑鼠右鍵

2021-06-22 16:22:43 字數 402 閱讀 1398

onmousedown 事件有個 event.button 可以返回乙個數值,根據數值判斷取得使用者按了那個滑鼠鍵 event.button==0 預設。沒有按任何按鈕。

event.button==1 滑鼠左鍵

event.button==2 滑鼠右鍵

event.button==3 滑鼠左右鍵同時按下

event.button==4 滑鼠中鍵

event.button==5 滑鼠左鍵和中鍵同時按下

event.button==6 滑鼠右鍵和中鍵同時按下

event.button==7 所有三個鍵都按下

document.oncontextmenu = function () {

alert("禁用右鍵");

return false;

頁面中禁用滑鼠右鍵和回格鍵

禁用右鍵 window.document.oncontextmenu function 禁用回格鍵 document.onkeydown check function check e if e.keycode 8 遮蔽退格刪除鍵 e.keycode 116 if e.ctrlkey e.keycod...

解決瀏覽網頁禁用滑鼠右鍵的方法

解決方法如下 在頁面目標上按下滑鼠右鍵,彈出限制視窗,這時不要鬆開右鍵,將滑鼠指標移到視窗的 確定 按鈕上,同時按下左鍵。現在鬆開滑鼠左鍵,限制視窗被關閉了,再將滑鼠移到目標上鬆開滑鼠右鍵,哈哈,彈出了滑鼠右鍵選單,限制取消了!解決方法如下 在目標上點滑鼠右鍵,出現新增到收藏夾的視窗,這時不要鬆開右...

清除滑鼠右鍵

清除滑鼠右鍵選單中多餘項的操作步驟如下 1 在系統桌面上單擊 開始 執行 項。2 在隨後出現的視窗中的 開啟 欄中鍵入regedit並單擊 確定 按鈕執行登錄檔編輯器。3 在登錄檔的hkey current user software microsoft internet explorer menu...