如何阻止文本被选中?

时间:2010-08-12 16:32:02

标签: javascript jquery cross-browser textselection

在我的网络应用中,用户有时可以多次点击同一按钮,跳过消息和内容,从而导致</a>被选中。

那么如何使用Javascript(jQuery)

来防止这种情况

2 个答案:

答案 0 :(得分:29)

你不需要脚本,这里是css:

-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;

答案 1 :(得分:2)

此解决方案对我有用: http://chris-barr.com/entry/disable_text_selection_with_jquery/

$(function(){
    $.extend($.fn.disableTextSelect = function() {
        return this.each(function(){
            if($.browser.mozilla){//Firefox
                $(this).css('MozUserSelect','none');
            }else if($.browser.msie){//IE
                $(this).bind('selectstart',function(){return false;});
            }else{//Opera, etc.
                $(this).mousedown(function(){return false;});
            }
        });
    });
    $('.noSelect').disableTextSelect();//No text selection on elements with a class of 'noSelect'
});