| selected | ใช้คืนค่า เพื่อตรวจสอบว่า option นี้ถูกเลือกอยู่หรือไม่ |
|---|
property:selected;
return type:boolean
object:option
content:ใช้คืนค่า เพื่อตรวจสอบว่า option นี้ถูกเลือกอยู่หรือไม่
example:var tagSelect = document.getElementById ( "bamboo" ); for ( var i=0; i<tagSelect.length; i++ ) { if ( tagSelect.options.item(i).selected ) { alert ( tagSelect.options.item(i).text ); } }