Jquery函数无法正常工作

时间:2012-07-17 12:39:27

标签: javascript jquery

我的页面保护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外,所有函数都运行良好。它必须禁用选择。但我可以选择任何一段文字。我错过了什么?

1 个答案:

答案 0 :(得分:1)

您只能在此代码中定义该功能。执行该功能。