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

2021-09-09 00:15:04 字數 2706 閱讀 7297

<bodyoncontextmenu="return false"onselectstart="return false"ondragstart="return false"onbeforecopy="return false"onmouseup=document.selection.empty()oncopy=document.selection.empty()onselect=document.selection.empty()>

禁止滑鼠右鍵:οncοntextmenu="return false";

禁止選擇:onselectstart="return false";

禁止拖放:οndragstart="return false";

禁止拷貝:οncοpy=document.selection.empty() 。

禁止儲存:,放在head裡面。

禁止貼上:

關閉輸入法:

遮蔽滑鼠右鍵:?

function document.oncontextmenu()

遮蔽f1幫助:?

function window.onhelp()

遮蔽其他鍵:?

function document.onkeydown()

/* 注:這還不是真正地遮蔽 alt+ 方向鍵,

因為 alt+ 方向鍵彈出警告框時,按住 alt 鍵不放,

用滑鼠點掉警告框,這種遮蔽方法就失效了。以後若

有哪位高手有真正遮蔽 alt 鍵的方法,請告知。*/

if ((event.keycode==8)   ||                 //遮蔽退格刪除鍵

(event.keycode==116)||                 //遮蔽 f5 重新整理鍵

(event.ctrlkey && event.keycode==82))

if (event.keycode==122)   //遮蔽f11

if (event.ctrlkey && event.keycode==78) event.returnvalue=false; //遮蔽 ctrl+n

if (event.shiftkey && event.keycode==121)event.returnvalue=false;   //遮蔽 shift+f10

if (window.event.srcelement.tagname == "a" && window.event.shiftkey)

window.event.returnvalue = false;          //遮蔽 shift 加滑鼠左鍵新開一網頁

if ((window.event.altkey)&&(window.event.keycode==115))          //遮蔽alt+f4

}

遮蔽列印:?

<style>

@media print

}

********************==另一種處理方法***************===

function stop()

document.oncontextmenu = stop;

var omitformtags = [ "input", "textarea", "select" ]

omitformtags = omitformtags.join("|")

function disableselect(e)

function reenable()

if (typeof document.onselectstart != "undefined")

document.onselectstart = new function("return false")

else

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

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

禁止 遮蔽 滑鼠右鍵

body oncontextmenu return false onselectstart return false ondragstart return false onbeforecopy return false onmouseup document.selection.empty oncop...

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

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