网页web防扒技术合集

1.禁用浏览器右键菜单

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

2.监听键盘事件

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

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

css禁止左键右键

//左键〈body onselectstart="return false"〉 //右键〈body οncοntextmenu='return false'

内容出处:,

声明:本网站所收集的部分公开资料来源于互联网,转载的目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。如果您发现网站上有侵犯您的知识产权的作品,请与我们取得联系,我们会及时修改或删除。文章链接:http://www.yixao.com/procedure/28437.html

发表评论

登录后才能评论