Code chống Click chuột phải tại website
Trịnh Hoàng Bảo Lộc
2013-08-02T00:42:22-04:00
2013-08-02T00:42:22-04:00
https://trinhloc.com/blog/Tai-lieu-Website/Code-chong-Click-chuot-phai-tai-website-214.html
https://trinhloc.com/uploads/blog/2013_08/right-click-disable.png
Trịnh Lộc
https://trinhloc.com/assets/images/logo.png
Thứ sáu - 02/08/2013 00:42
Bạn lưu đoạn code sau với tên là noclick.js, sau đó chèn vào website cần chống click chuột phải
var message="";function clickIE() {if (document.all) {(message);return false;}}function clickNS(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=clickNS;}else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;document.onse-lectstart=clickIE}document.oncontextmenu=new Function("return false")