有会员提出辛苦原创的东西怕轻易给人复制过去,既然会员有需求,我就满足,在网上找到如下代码加上。
在header.htm和homepage/header.htm模版目录下增加如下代码。
[code]<!–不能复制粘贴开始–>
<script 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>
<!–不能复制粘贴结束 –>[/code]
[code]<body>[/code]
修改为
[code]<body oncopy="return false;" >[/code]
评论前必须登录!
注册