有时需要禁止别人拷贝网站上的内容,即禁止用户选择内容、禁止复制。
代码:
<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>