DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> JS代碼:獲得當前select元素值的腳本
JS代碼:獲得當前select元素值的腳本
編輯:關於JavaScript     

  1. 如果 select 元素下的所有 option 元素均沒有指定 selected 屬性,會默認選中第一個。
  2. 可以通過 select.selectedIndex 獲取到選中的 option 元素的索引。
  3. 可以通過 select.options[select.selectedIndex] 獲取到選中的 option 元素。
  4. option 元素 <option selected="selected" value="value3">text3</option>,可以通過 option.value 獲得 option 元素的 value 屬性值,即 value3;可以通過 option.text 獲得 option 元素內的文本,即 text3。
  5. 如果 option 元素沒有定義 value 屬性,則 IE 中 option.value 無法獲得,但 Safari、Opera、FireFox 依舊可以通過 option.value 獲得,值同於 option.text 。
  6. 可以通過 option.attributes.value && option.attributes.value.specified 來判斷 option 元素是否定義了 value 屬性。

故,獲得當前 select 元素值的腳本如下:

var getSelectValue = funtion(select) {
    var idx = select.selectedIndex,
        option,
        value;
    if (idx > -1) {
        option = select.options[idx];
        value = option.attributes.value;
        return (value && value.specified) ? option.value : option.text); 
   }
    return null;
}

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved