Heim >Web-Frontend >js-Tutorial >禁止IE用右键的JS代码_javascript技巧

禁止IE用右键的JS代码_javascript技巧

WBOY
WBOYOriginal
2016-05-16 17:06:11924Durchsuche

复制代码 代码如下:

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.onmouseup=reEnable
}


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

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn