码迷,mamicode.com
首页 > Web开发 > 详细

禁止复制网页内容

时间:2015-12-30 09:20:24      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

// 禁用右键菜单、复制、选择
$(document).bind("contextmenu copy selectstart", function() {
    return false;
});
// 禁用Ctrl+C和Ctrl+V(所有浏览器均支持)
$(document).keydown(function(e) {
    if(e.ctrlKey && (e.keyCode == 65 || e.keyCode == 67)) {
        return false;
    }
});
// 设置CSS禁止选择(如果写了下面的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"
    });
});<br><br>

防止禁用JavaScript后失效,可以写在CSS中(新版浏览器支持,并逐渐成为标准):

1
2
3
4
5
6
7
8
body {
    -moz-user-select:none/* Firefox私有属性 */
    -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属性 */
}<br>

禁止复制网页内容

标签:

原文地址:http://www.cnblogs.com/shouce/p/5087660.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!