我想添加文本到我的网页作为标签,使其不可选。

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

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


使用普通的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>

我修改了上面发布的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();
});

这里没有人给出所有正确的CSS变体的答案,所以它是:

.not-selectable { -webkit-touch-callout:没有; -webkit-user-select:没有; -khtml-user-select:没有; -moz-user-select:没有; -ms-user-select:没有; 用户选择:没有; } <p class="not-selectable"> not-selectable text< p>


您的问题的完整的现代解决方案纯粹是基于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非常优雅。