欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

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
相关标签: select option