当前位置:  开发笔记 > 编程语言 > 正文

如何从DOM访问选择框选项的"显示"文本?

如何解决《如何从DOM访问选择框选项的"显示"文本?》经验,为你挑选了1个好方法。

给出以下HTML:


如何使用Javascript/DOM获取字符串"显示的文本1"?



1> Liam..:
var sel = document.getElementById("my_dropdown");

//get the selected option
var selectedText = sel.options[sel.selectedIndex].text;

//or get the first option
var optionText = sel.options[0].text;

//or get the option with value="1"
for(var i=0; i

推荐阅读
mobiledu2402852357
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有