Bạn muốn nội dung website của mình chống sao chép dưới mọi hình thức thì có thể dùng thủ thuật sau
Code chống copy
Các bạn chỉ cần copy đoạn code sau và dán vào trước thẻ head:
<style>
body{
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
</style>
<script type="text/JavaScript">
function killCopy(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=killCopy
document.onclick=reEnable
}
</script>
Đoạn Code chống click chuột phải:
các bạn cũng làm tương tự copy đoạn code sau và dán vào trước thẻ <head>
<script type="text/JavaScript">
var
message="NoRightClicking"; function defeatIE() {if (document.all)
{(message);return false;}} function defeatNS(e) {if
(document.layers||(document.getElementById&&!document.all)) { if
(e.which==2||e.which==3) {(message);return false;}}} if
(document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=defeatNS;}
else{document.onmouseup=defeatNS;document.oncontextmenu=defeatIE;}
document.oncontextmenu=new Function("return false")
</script>
Comments[ 0 ]
Đăng nhận xét