0

我的页面保护 JS 文件看起来像这样

(function($){
$.fn.disableSelection = function() {
    return this.each(function() {           
        $(this).attr('unselectable', 'on')
               .css({
                   '-moz-user-select':'none',
                   '-webkit-user-select':'none',
                   'user-select':'none',
                   '-ms-user-select':'none'
               })
               .each(function() {
                   this.onselectstart = function() { return false; };
               });
    });
};
})(jQuery);

var message="Bu səhifədən material kopyalamaq qadağandır!"; 

function clickIE4(){
    if (event.button==2){
        alert(message);
        return false;
    }
}
function clickNS4(e){
    if (document.layers||document.getElementById&&!document.all){
        if (e.which==2||e.which==3){
            alert(message);
            return false;
        }
    }
}
if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=clickNS4;
} else if (document.all&&!document.getElementById){
    document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")

除 $.fn.disableSelection 外,所有功能都运行良好。它必须禁用选择。但我可以选择任何一段文字。我错过了什么?

4

1 回答 1

1

You only define the function in this code. Execute the function.

于 2012-07-17T12:42:30.357 回答