如何使HTML文本无法选择

这个问题在这里已经有了答案:

  • 如何禁用文本选择突出显示? 37个答案

  • 你不能用普通的香草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,那么下面是另一个为jQuery添加一个新函数disableSelection()示例,以便您可以在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>
    

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

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

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

    链接地址: http://www.djcxy.com/p/7111.html

    上一篇: How to make HTML Text unselectable

    下一篇: Is there a way to make text unselectable on an HTML page?