如何获得select被选中option的value和text
程序员文章站
2022-04-17 19:49:47
...
如何获得select被选中option的value和text
一:JavaScript原生的方法
1:拿到select对象: var myselect=document.getElementById(“test”);
2:拿到选中项的索引:var index=myselect.selectedIndex ; // selectedIndex代表的是你所选中项的index
3:拿到选中项options的value: myselect.options[index].value;
4:拿到选中项options的text: myselect.options[index].text;
二:jQuery方法(前提是已经加载了jquery库)
1:var options=$(“#test option:selected”); //获取选中的项
2:alert(options.val()); //拿到选中项的值
3:alert(options.text()); //拿到选中项的文本
上一篇: SSD是什么?
下一篇: mysql -- 自定义函数及循环结构
推荐阅读
-
如何获得select被选中option的value和text
-
jQuery获取Select option 选择的Text和 Value
-
JQuery 获取select被选中的value和text
-
jQuery+PHP获取Select option 取舍的Text和Value(附选择城市实例)
-
如何获得select被选中option的value和text
-
jQuery+PHP获取Select option 选择的Text和Value(附选择城市实例)
-
jQuery+PHP获取Select option 选择的Text和Value(附选择城市实例)_PHP教程
-
jQuery获取Select option 选择的Text和 Value
-
js添加select下默认的option的value和text的方法_javascript技巧
-
如何获得select被选中option的value和text