แอตทริบิวต์แบบอ่านอย่างเดียวขององค์ประกอบ
อย่างไรก็ตาม ผู้เข้าชมสามารถคัดลอกเนื้อหานั้นได้
ต่อไปนี้เป็นไวยากรณ์ -
<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 textarea −
<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>