IT story

HTML 텍스트를 선택 불가능하게 만드는 방법

hot-time 2020. 5. 27. 07:41
반응형

HTML 텍스트를 선택 불가능하게 만드는 방법


이 질문에는 이미 답변이 있습니다.

웹 페이지에 텍스트를 레이블로 추가하고 선택할 수 없게 만들고 싶습니다.

즉, 마우스 커서가 텍스트 위에있을 때 텍스트 선택 커서로 바뀌지 않기를 원합니다.

내가 달성하려는 것의 좋은 예는이 웹 사이트의 버튼 (질문, 태그, 사용자 등)입니다.


일반 바닐라 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>

이미 jQuerydisableSelection() 를 사용하고 있다면 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>

여기에 올바른 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는 매우 우아합니다.


라이브 요소에서 작동하도록 위에 게시 된 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();
});

참고 URL : https://stackoverflow.com/questions/2310734/how-to-make-html-text-unselectable

반응형