只要在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>
沒有留言:
張貼留言