javascript获取select的当前值示例代码(兼容IE/Firefox/Opera/Chrome)_javascript技巧
程序员文章站
2022-05-25 18:13:38
...
JavaScript获取Select当前值写法:
var value = document.getElementById("select").options[document.getElementById("select").options.selectedIndex].value;
var text = document.getElementById("select").options[document.getElementById("select").options.selectedIndex].text;
var value = document.getElementById("select").options[document.getElementById("select").options.selectedIndex].value;
var text = document.getElementById("select").options[document.getElementById("select").options.selectedIndex].text;
例子:
复制代码 代码如下:
推荐阅读
-
JS 获取select(多选下拉)中所选值的示例代码_javascript技巧
-
JS 获取span标签中的值的代码 支持ie与firefox_javascript技巧
-
javascript获取select的当前值示例代码(兼容IE/Firefox/Opera/Chrome)_javascript技巧
-
IE及firefox下获取及设置样式值的代码_javascript技巧
-
javascript获取select的当前值示例代码(兼容IE/Firefox/Opera/Chrome)_javascript技巧
-
js 兼容多浏览器的回车和鼠标焦点事件代码(IE6/7/8,firefox,chrome)_javascript技巧
-
兼容IE、FireFox、Chrome等浏览器的xml处理函数js代码_javascript技巧
-
解决IE下select标签innerHTML插入option的BUG(兼容IE,FF,Opera,Chrome,Safari)_javascript技巧
-
兼容IE,firefox的获取节点的文本值的javascript代码_javascript技巧
-
JS 获取span标签中的值的代码 支持ie与firefox_javascript技巧