그러나 방문자는 해당 콘텐츠를 복사할 수 있습니다.
다음은 구문입니다 -
<textarea readonly>
이제
의 읽기 전용 속성을 구현하는 예를 살펴보겠습니다.예시
<!DOCTYPE html> <html> <body> <h2>Interview Questions</h2> <p>Q1</p> <textarea rows="6" cols="70" placeholder="Why do you want go for the Editor Job Profile? (100 words)"> </textarea> <p>Q2</p> <textarea rows="6" cols="70" placeholder="Do you have any previous publishing experience? (100 words)"> </textarea> <p>Guidelines to appear for interview:</p> <textarea rows="6" cols="70" readonly> The interviewee should reach at 10AM with the certificates. </textarea> </body> </html>
출력
위의 예에는 3개의 텍스트 영역이 있습니다 -
<p>Q1</p> <textarea rows="6" cols="70" placeholder="Why do you want go for the Editor Job Profile? (100 words)"> </textarea> <p>Q2</p> <textarea rows="6" cols="70" placeholder="Do you have any previous publishing experience? (100 words)"> </textarea> <p>Guidelines to appear for interview:</p> <textarea rows="6" cols="70" readonly> The interviewee should reach at 10AM with the certificates. </textarea>
이 텍스트 영역 중 하나는 읽기 전용으로 설정되어 있으므로 사용자는 텍스트를 추가할 수 없습니다. −
<textarea rows="6" cols="70" readonly> The interviewee should reach at 10AM with the certificates. </textarea>