| readOnly | ใช้ตรวจสอบ หรือกำหนดว่า textarea ใช้อ่านอย่างเดียวใช่หรือไม่ |
|---|
property:readOnly;
return type:boolean, void
content:ใช้ตรวจสอบ หรือกำหนดว่า textarea ใช้อ่านอย่างเดียวใช่หรือไม่ คือไม่สามารถเปลี่ยนแปลงข้อมูลภายในได้
example:var tagTextArea = document.getElementById ( "bamboo" ); if ( tagTextArea.readOnly ) { alert ( "can not change data in textarea" ); }