web-dev-qa-db-ja.com

HTMLテキストを選択不可にする方法

Webページにテキストをラベルとして追加し、選択できないようにしたいと思います。

つまり、マウスカーソルがテキスト上にあるとき、テキスト選択カーソルにまったくならないようにしたいのです。

私が達成しようとしていることの良い例は、このウェブサイトのボタンです(質問、タグ、ユーザー、...)

159
Ben

これを単純なVanilla 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コードのどこでも使用できるように、jQueryに新しい関数disableSelection()を追加する別の例を次に示します。

<!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>
228
BalusC

正しいCSSバリエーションのすべてを含む回答をここに投稿した人はいませんでした。

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

問題に対する完全な最新のソリューションは、純粋に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はかなりエレガントです。

51
Vic Goldfeld

上記の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();
});
10
Steve