使用JavaScript防止页面内容被赋值,可兼容多个浏览器

来源:互联网 发布:java 颜色选择控件 编辑:程序博客网 时间:2024/05/17 06:00
   <script language="javascript" type="text/javascript">
    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>
原创粉丝点击