HTML DOM Textarea select() 메소드는 HTML 문서에서 텍스트 영역의 내용을 선택합니다.
구문
다음은 구문입니다 -
object.select()
HTML DOM Textarea select() 메서드의 예를 살펴보겠습니다. -
예시
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; } </style> <body> <h1>DOM Textarea select() Method Demo</h1> <textarea rows='5' cols="30">Hi! I'm a text area element with some dummy text.</textarea> <button onclick="set()" class="btn">Select textarea content</button> <script> function set() { document.querySelector("textarea").select(); } </script> </body> </html>
출력
"텍스트 영역 콘텐츠 선택을 클릭합니다. ” 버튼을 눌러 텍스트 영역 요소의 내용을 선택합니다.