做网站很多时候会碰到被采集被扒的经验,今天分享一些防采集,防扒网站的一些小代码,从基础方面防止扒网站。
document.oncontextmenu = new Function("return false;");
function mAlert() { var fn = function () {}; fn.toString = function () { window.location = 'about: blank'; console.log("呵呵"); } console.log("%c", fn);//请不要删除这行 };mAlert();
function mAlert() { var fn = function () {}; fn.toString = function () { window.location = 'about: blank'; console.log("呵呵"); } console.log("%c", fn);//请不要删除这行 };mAlert();
document.onmousedown = function mdClick(event) { var e = event || window.event || arguments.callee.caller.arguments[0]; if (e.button == 2 || e.button == 3) { alert("呵呵"); //不建议用以下方法,易错率大 window.location = 'about: blank'; } }
document.onkeydown = function() { if ((e.ctrlKey) && (e.keyCode == 83)) { //ctrl+s alert("ctrl+s被禁用"); return false; } }
//左键 〈body onselectstart="return false"〉 //右键 〈body οncοntextmenu='return false'〉
© 版权声明
THE END
暂无评论内容