js 获取当前select元素值的代码
作者:
对于value值可以通过select.value 取得的,但对于text值则需要通过select.options[select.sekectedIndex].txet 获得。
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;
}
以前由于兼容性问题,大家用select.options[select.sekectedIndex].value来取值,不过现在用select.value都可以了
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
事件触发也可以用
<select id="jb51net" onchange="alert(getSelectValue(this))">
最好是绑定事件。
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;
}
以前由于兼容性问题,大家用select.options[select.sekectedIndex].value来取值,不过现在用select.value都可以了
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
事件触发也可以用
<select id="jb51net" onchange="alert(getSelectValue(this))">
最好是绑定事件。
您可能感兴趣的文章:
- JavaScript操作select元素和option的实例代码
- javascript操作select元素实例分析
- 获取select元素被选中的文本内容的js代码
- js querySelector和getElementById通过id获取元素的区别
- js获取当前select 元素值的代码
- JavaScript Select和Option列表元素上下左右移动
- extjs 列表框(multiselect)的动态添加列表项的方法
- JS对HTML标签select的获取、添加、删除操作
- 使用js对select动态添加和删除OPTION示例代码
- JavaScript实现将数组数据添加到Select下拉框的方法
- JS动态添加与删除select中的Option对象(示例代码)
- JS & JQuery 动态添加 select option
- JavaScript实现向select下拉框中添加和删除元素的方法