当前位置: 代码迷 >> Web前端 >> safari 异常取得 select 的 value
  详细解决方案

safari 异常取得 select 的 value

热度:713   发布时间:2012-10-27 10:42:25.0
safari 错误取得 select 的 value
Safari mis-reports the default selected property of a hidden option
        // Accessing the parent's selectedIndex property fixes it



elem.parentNode.selectedIndex
alert(elem.value);
  相关解决方案