禁右鍵拷貝,版權所有

拷貝以下的程式碼,將其貼在 <head> 下面
-------------------

<!–Avoid Copying Script –>
<script type=”text/javascript”>
var omitformtags=[&quot;input&quot;, &quot;textarea&quot;, &quot;select&quot;]
omitformtags=omitformtags.join(&quot;|&quot;)
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!=&quot;undefined&quot;)
document.onselectstart=new Function (&quot;return false&quot;)
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}

</script>

-------------------
( 原始碼出處:Buzzerrs


就像這樣。。。。。