214

我想将文本作为标签添加到我的网页并使其无法选择。

换句话说,当鼠标光标在文本上时,我希望它根本不会变成文本选择光标。

我试图实现的一个很好的例子是这个网站上的按钮(问题、标签、用户......)

4

4 回答 4

337

你不能用普通的普通 HTML 做到这一点,所以 JSF 在这里也不能为你做很多事情。

如果您只针对体面的浏览器,那么只需使用 CSS3:

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
<label class="unselectable">Unselectable label</label>

如果您还想涵盖旧版浏览器,请考虑以下 JavaScript 后备:

<!doctype html>
<html lang="en">
    <head>
        <title>SO question 2310734</title>
        <script>
            window.onload = function() {
                var labels = document.getElementsByTagName('label');
                for (var i = 0; i < labels.length; i++) {
                    disableSelection(labels[i]);
                }
            };
            function disableSelection(element) {
                if (typeof element.onselectstart != 'undefined') {
                    element.onselectstart = function() { return false; };
                } else if (typeof element.style.MozUserSelect != 'undefined') {
                    element.style.MozUserSelect = 'none';
                } else {
                    element.onmousedown = function() { return false; };
                }
            }
        </script>
    </head>
    <body>
        <label>Try to select this</label>
    </body>
</html>

如果您已经在使用jQuery,那么这里是另一个示例,它disableSelection()向 jQuery 添加了一个新函数,以便您可以在 jQuery 代码中的任何地方使用它:

<!doctype html>
<html lang="en">
    <head>
        <title>SO question 2310734 with jQuery</title>
        <script src="http://code.jquery.com/jquery-latest.min.js"></script>
        <script>
            $.fn.extend({ 
                disableSelection: function() { 
                    this.each(function() { 
                        if (typeof this.onselectstart != 'undefined') {
                            this.onselectstart = function() { return false; };
                        } else if (typeof this.style.MozUserSelect != 'undefined') {
                            this.style.MozUserSelect = 'none';
                        } else {
                            this.onmousedown = function() { return false; };
                        }
                    }); 
                } 
            });

            $(document).ready(function() {
                $('label').disableSelection();            
            });
        </script>
    </head>
    <body>
        <label>Try to select this</label>
    </body>
</html>
于 2010-02-22T12:31:44.517 回答
173

这里没有人发布所有正确 CSS 变体的答案,所以这里是:

-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
于 2011-06-17T07:09:57.040 回答
62

您的问题的完整现代解决方案完全基于 CSS,但请注意旧版浏览器不支持它,在这种情况下,您需要回退到其他人提供的解决方案。

所以在纯 CSS 中:

-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;

但是,鼠标光标在元素文本上时仍会变为插入符号,因此您可以添加:

cursor: default;

现代 CSS 非常优雅。

于 2011-11-23T16:04:53.430 回答
12

我更改了上面发布的 jQuery 插件,因此它可以在实时元素上工作。

(function ($) {
$.fn.disableSelection = function () {
    return this.each(function () {
        if (typeof this.onselectstart != 'undefined') {
            this.onselectstart = function() { return false; };
        } else if (typeof this.style.MozUserSelect != 'undefined') {
            this.style.MozUserSelect = 'none';
        } else {
            this.onmousedown = function() { return false; };
        }
    });
};
})(jQuery);

然后你可以这样:

$(document).ready(function() {
    $('label').disableSelection();

    // Or to make everything unselectable
    $('*').disableSelection();
});
于 2011-02-21T20:40:43.193 回答