다음은 HTML 페이지에서 텍스트를 선택 해제하는 코드입니다. −
예시
<!DOCTYPE html> <htmllang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result { font-size: 20px; font-weight: 500; color: rebeccapurple; } </style> </head> <body> <h1>De-select text on HTML page</h1> <div style="color: green;" class="result"> Here is some text inside the div </div> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to deselect everything on this page</h3> <script> let resEle = document.querySelector(".result"); document.querySelector(".Btn").addEventListener("click", () => { window.getSelection().removeAllRanges(); }); </script> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -
페이지에서 일부 텍스트 선택 -
'여기를 클릭' 버튼을 클릭하면 -