首頁  >  文章  >  web前端  >  禁止IE用右鍵的JS程式碼_javascript技巧

禁止IE用右鍵的JS程式碼_javascript技巧

WBOY
WBOY原創
2016-05-16 17:06:11907瀏覽

複製程式碼 程式碼如下:

document.body.oncontextmenu=function rightClick(){ window.event.returnValue= false;}



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

omitformtags=omitformtags.join("|")

function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}

function reEnable(){
return true
}

if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect document. reEnable
}

<script> <BR>function stop(){ <BR>return false; <BR>} <BR>document.oncontextmenu=stop; <BR><} <BR>document.oncontextmenu=stop; <BR><} </script>

document.oncontextmenu=stop;
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn