html 禁止复制

<!-- 禁止复制 -->
<script type="text/javascript">


var omitformtags=["input", "textarea", "select"]
omitformtagsomitformtags=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>

猜你喜欢

转载自blog.csdn.net/qq_39702981/article/details/80782193