当前位置:首页>网络技术>网页防扒技术合集

网页防扒技术合集

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'〉

声明:本站内容均转载于互联网,拒绝任何人以任何形式在本站发表与中华人民共和国法律相抵触的言论!如若本站内容侵犯了原著者的合法权益,请联系我们邮箱:tsstee@sina.com。

给TA打赏
共{{data.count}}人
人已打赏
网络技术

qq忘记二代怎么办-解除二代忘记变无保方案-自测

2022-2-16 16:15:00

网络技术

QQ被封解封实录实测-来自某知名论坛帖子

2022-2-16 16:18:00

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索