2008年4月12日 星期六

禁止拷貝網頁內容的入門方法

把這段程式碼貼在<head>與</head>之間,可以讓「選取」功能失效,當然就可以達成入門級的防複製功能。至於玩家...就算了吧!何況,有玩家要拷,表示內容有點價值,應該高興才對!

<script language="JavaScript1.2" >

function disableselect(e){
return false
}

function reEnable(){
return true
}

document.onselectstart=new Function (”return false”)

if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>

資料來源:http://www.cashquests.com/stop-people-stealing-your-content

沒有留言: