网页防扒技术合集

1.禁用浏览器右键菜单

document.oncontextmenu = new Function("return false;");

2.监听键盘事件

document.onkeydown = document.onkeyup = document.onkeypress = function(event) {    var e = event || window.event || arguments.callee.caller.arguments[0];    if (e && e.keyCode == 123) {            window.location = 'about: blank';            e.returnValue = false;            return (false);    }}

3.检测控制台

function mAlert() {    var fn = function () {};    fn.toString = function () {        window.location = 'about: blank';        console.log("呵呵");    }    console.log("%c", fn);//请不要删除这行};mAlert();

4.鼠标点击事件

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';    }}

5.禁止保存

 document.onkeydown = function() {        if ((e.ctrlKey) && (e.keyCode == 83)) { //ctrl+s            alert("ctrl+s被禁用");            return false;        }    }

6.css禁止左键右键

//左键〈body onselectstart="return false"〉//右键〈body οncοntextmenu='return false'〉
------本页内容已结束,喜欢请分享------
温馨提示:由于项目或工具都有失效性,如遇到不能做的项目或不能使用的工具,可以根据关键词在站点搜索相关内容,查看最近更新的或者在网页底部给我们留言反馈。
© 版权声明
THE END
喜欢就支持一下吧
点赞4513 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容