हालांकि, आगंतुक उस सामग्री को कॉपी कर सकते हैं।
निम्नलिखित वाक्य रचना है -
<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>