2009年6月18日 星期四

增加鎖右鍵或其它防止COPY頁面資訊的JS基本語法

只要在body標籤中加入相關屬性的設定,即可簡單的防止COPY頁面資訊,如下面所描述

<body oncontextmenu="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()">

也可打在javascript的標籤中

<script type="text/javascript">
document.oncontextmenu = function (){ return false;}
document.onselect= function (){ document.selection.empty();}
document.oncopy= function (){ document.selection.empty();}
</script>

沒有留言: