前端之家收集整理的这篇文章主要介绍了
javascript实现禁止复制网页内容汇总,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
方法一:
菜单、复制、选择
$(document).bind("contextmenu copy selectstart",function() {
return false;
});
方法二:
支持)
$(document).keydown(function(e) {
if(e.ctrlKey && (e.keyCode == 65 || e.keyCode == 67)) {
return false;
}
});
方法三:
禁止选择(如果写了下面的CSS则不需要这一段
代码,新版浏览器
支持)
$(function() {
$("body").css({
"-moz-user-select":"none","-webkit-user-select":"none","-ms-user-select":"none","-khtml-user-select":"none","-o-user-select":"none","user-select":"none"
});
});
方法四:防止禁用JavaScript后失效,可以写在CSS中(新版浏览器支持,并逐渐成为标准):
属性 */
-webkit-user-select:none; /* WebKit内核私有
属性 */
-ms-user-select:none; /* IE私有
属性(IE10及以后) */
-khtml-user-select:none; /* KHTML内核私有
属性 */
-o-user-select:none; /* Opera私有
属性 */
user-select:none; /* CSS3
属性 */
}
原文链接:https://www.f2er.com/js/50827.html