相思资源网 Design By www.200059.com
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))">
最好是绑定事件。
相思资源网 Design By www.200059.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
相思资源网 Design By www.200059.com
暂无js 获取当前select元素值的代码的评论...