javascript 获取select下拉列表值的代码_表单特效
程序员文章站
2022-04-12 10:21:44
...
比如,在使用DWR的时候,如果你想传递下拉框的参数到后台的话,此时就需要先获取到下拉框的值了。
其实想要获取到下拉框的值是很简单的。
最关键的一段代码就是:
onchange="show(this.options[this.options.selectedIndex].value);"
onchange="show(this.options[this.options.selectedIndex].value);"
show是一个自定义的函数名。
this.options[this.options.selectedIndex].value才是主角!
其实想要获取到下拉框的值是很简单的。
最关键的一段代码就是:
复制代码 代码如下:
onchange="show(this.options[this.options.selectedIndex].value);"
onchange="show(this.options[this.options.selectedIndex].value);"
show是一个自定义的函数名。
this.options[this.options.selectedIndex].value才是主角!
推荐阅读
-
php 获取select下拉列表框的值
-
JavaScript实现获取select下拉框中第一个值的方法
-
jQuery 获取和设置select下拉框的值实现代码
-
javascript 获取select下拉列表值的代码
-
JS 获取select(多选下拉)中所选值的示例代码_javascript技巧
-
ASP中SELECT下拉菜单同时获取VALUE和TEXT值的实现代码
-
在第一个input框内输入内容.textarea自动得到第一个文件框的值的javascript代码_表单特效
-
php如何获取select下拉列表的值
-
vue elementui中,el-select多选下拉列表中,获取:value和:label的值
-
如何获取select下拉框的值(option没有及有value属性)_javascript技巧