禁止别人复制你网页上的东西怎么做?
发布网友
发布时间:2022-05-16 08:44
我来回答
共2个回答
热心网友
时间:2023-10-17 03:14
只能做到尽量不让别人复制。
如果人家想复制还是能用各种手段复制的。
下面是禁止在页面上选择内容与全选(使用前要引用jquery)
var omitformtags=["input", "textarea"];omitformtags=omitformtags.join("|");function disableselect(e){if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1){return false;}}function reEnable(){return true;}jq(document).ready(function(){if (typeof (document.onselectstart)!="undefined"){document.onselectstart = new Function("return false");}else{document.onmousedown = disableselect;document.onmouseup = reEnable;}for(var i=0;i<omitformtags.split('|').length;i++){$(omitformtags.split('|')[i]).focus(function(){document.onselectstart = new Function("return true");});$(omitformtags.split('|')[i]).blur(function(){document.onselectstart = new Function("return false");});}});追问你能给我一个禁止别人在页面上选择内容与全选的JS代码吗?
追答不就是上面发过的那段js嘛
热心网友
时间:2023-10-17 03:14
“工具”->“Internet选项”->“常规”下的“Internet临时文件”->“设置”->“查看文件”,在里面找到你要的东西的“Internet地址”。复制下来下载就OK了~!