js禁止右鍵,複製,貼上,選擇

2021-06-04 13:07:55 字數 762 閱讀 8026

1

. oncontextmenu="

window.event.returnvalue=false

"將徹底遮蔽滑鼠右鍵,其實是禁止快捷選單,因為不光右鍵可以彈出這個選單,鍵盤上空格鍵右邊的windows鍵也可以啟用這個快捷選單

<

table border oncontextmenu

=return

(false

)><

td>

notable

>

可用於table

2. <

body onselectstart="

return false

">

禁止選取、防止複製

3. onpaste="

return false

"禁止貼上

4. oncopy="

return false;

"oncut="

return false;

"禁止複製和剪下

5. <

input style="

ime-mode:disabled

">

關閉輸入法

一般用這三個就足夠了

<

body onselectstart='

return false

'ondrag='

return false

'oncontextmenu='

return false

'>

JS禁用右鍵 複製 貼上。。。

禁止滑鼠右鍵 oncontextmenu window.event.returnvalue false 將徹底遮蔽滑鼠右鍵,其實是禁止快捷選單,因為不光右鍵可以彈出這個選單,鍵盤上空格鍵右邊的windows鍵也可以啟用這個快捷選單 可用於table div 等 table border oncont...

JS禁止複製貼上,F12操作

css禁止文字複製貼上 禁止文字選中 html,body some text 說明 unselectable針對ie onselectstart針對chrome safari moz user select是firefox專有的window.onload function 取消手機端頁面長按出現儲存...

IE遮蔽滑鼠右鍵 禁止複製貼上等功能

bodyoncontextmenu return false onselectstart return false ondragstart return false onbeforecopy return false onmouseup document.selection.empty oncopy...