js获取select选中的option的text示例代码_javascript技巧
程序员文章站
2022-05-17 18:26:34
...
javascript
var item = document.getElementById("");
var text = item.options[item.selectedIndex].text;
jQuery
var text = $("#selector")[0].options[$("#selector")[0].selectedIndex].text
复制代码 代码如下:
var item = document.getElementById("");
var text = item.options[item.selectedIndex].text;
jQuery
复制代码 代码如下:
var text = $("#selector")[0].options[$("#selector")[0].selectedIndex].text
上一篇: PHP 读取大文件程序代码_PHP教程
推荐阅读
-
用jquery获取select标签中选中的option值及文本的示例
-
Js实现双击鼠标自动滚动屏幕的示例代码_javascript技巧
-
js禁止回车提交表单的示例代码_javascript技巧
-
JS 实现Table相同行的单元格自动合并示例代码_javascript技巧
-
js禁止回车提交表单的示例代码_javascript技巧
-
js获取url中指定参数值的示例代码_javascript技巧
-
JS 实现Table相同行的单元格自动合并示例代码_javascript技巧
-
JS 获取select(多选下拉)中所选值的示例代码_javascript技巧
-
利用js动态添加删除table行的示例代码_javascript技巧
-
js调用activeX获取u盘序列号的代码_javascript技巧