Thiết kế website bán hàng

Code chống copy và click chuột phải

 

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>

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>

Xem thêm tại:Code chống copy và click chuột phải


Ý kiến bạn đọc
No comments found