js禁止选择内容的实现代码

发布时间:2020-04-21编辑:脚本学堂
本文介绍下,用js实现的禁止选择网页内容的一例代码,有需要的朋友参考下吧。

有时需要禁止别人拷贝网站上的内容,即禁止用户选择内容、禁止复制。

代码:

<script type="text/javascript">
/**
* 禁止选择与复制内容
* edit:www.jb200.com
*/
function disableselect(e){  
return false}  
function reEnable(){return true  
}  
//if IE4+  
document.onselectstart=new Function ("return false")  
//if NS6  
if (window.sidebar){  
document.onmousedown=disableselect  
document.onclick=reEnable  
}  
</script>