แอตทริบิวต์ที่ถูกปิดใช้งานขององค์ประกอบ
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
<textarea disabled>
ตัวอย่าง
ให้เรามาดูตัวอย่างการใช้งานแอตทริบิวต์ที่ปิดใช้งานขององค์ประกอบ
<!DOCTYPE html> <html> <body> <h2>Candidate Details</h2> Student Name: <input type="text" value="David"><br> Student Id: <input type="number" value="007"><br> <p>Educational Qualification (Graduation)</p> <select> <option value="bca">B.Tech</option> <option value="btech">BCA</option> <option value="bcom">B.COM</option> <option value="bsc">B.SC</option> <option value="bba">BBA</option> </select> <p>Educational Qualification (Post-Graduation)</p> <select> <option value="mca">MCA</option> <option value="mtech">M.Tech</option> <option value="mcom">M.COM</option> <option value="msc">M.SC</option> </select></br> <p>Info:</p> <textarea rows="5" cols="30" disabled> You need to also bring the certificates for the degrees mentioned above. </textarea> </body> </html>
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
ในตัวอย่างข้างต้น เราได้ตั้งค่ารายการแบบหล่นลงและพื้นที่ข้อความ -
<select> <option value="mca">MCA</option> <option value="mtech">M.Tech</option> <option value="mcom">M.COM</option> <option value="msc">M.SC</option> </select></br> <p>Info:</p> <textarea rows="5" cols="30" disabled> You need to also bring the certificates for the degrees mentioned above. </textarea>
<textarea rows="5" cols="30" disabled> You need to also bring the certificates for the degrees mentioned above. </textarea>