发布于2021-03-13 18:49 阅读(964) 评论(0) 点赞(22) 收藏(2)
基础防复制方式:通过js 禁止鼠标右键、禁止鼠标选中文字、禁止快捷键ctrl+u、禁止F12键
- var arr = [123, 17, 18];
- document.oncontextmenu = new Function("event.returnValue=false;");//禁用右键
- document.onselectstart = new Function("event.returnValue=false;");//禁用选中
- //禁止 ctrl+u
- window.onkeydown = function (e) {
- var keyCode = e.keyCode || e.which || e.charCode;
- var ctrlKey = e.ctrlKey || e.metaKey;
- console.log(keyCode + "--" + keyCode);
- if (ctrlKey && keyCode == 85) {
- console.log("禁止ctrl+u");
- e.preventDefault();
- }
- if (arr.indexOf(keyCode) > -1) {
- console.log("其他");
- e.preventDefault();
- }
- }
- //屏蔽F12
- document.onkeydown = function () {
- if (window.event && window.event.keyCode == 123) {
- event.keyCode = 0;
- event.returnValue = false;
- return false;
- }
- }
其中,keyCode已经从 Web 标准中删除,虽然一些浏览器目前仍然支持它,但也许会在未来的某个时间停止支持,请尽量不要使用该特性。
https://developer.mozilla.org/zh-CN/docs/Web/API/KeyboardEvent/keyCode
https://www.cnblogs.com/hyq0002013/p/6421409.html
代码可简化为:
- document.oncontextmenu = new Function("event.returnValue=false;");//禁用右键
- document.onselectstart = new Function("event.returnValue=false;");//禁用选中
- //禁止 ctrl+u
- window.onkeydown = function (e) {
- var ctrlKey = e.ctrlKey || e.metaKey;
- if (ctrlKey) {
- e.preventDefault();
- }
- }
- //屏蔽F12
- document.onkeydown = function () {
- if (window.event) {
- event.returnValue = false;
- return false;
- }
- }
原文链接:https://blog.csdn.net/L_melody/article/details/114669354
作者:西门费雪
链接:http://www.qianduanheidong.com/blog/article/35722/898bb410fa3e1ef5c427/
来源:前端黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 前端黑洞网 All Rights Reserved 版权所有,并保留所有权利。 京ICP备18063182号-3
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!