| defaultSelected | ใช้คืนค่า เพื่อตรวจสอบว่า option นี้ถูกเลือกไว้ตั้งแต่ต้นหรือไม่ |
|---|
property:defaultSelected;
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).defaultSelected ) { alert ( tagSelect.options.item(i).text ); } }