如何从html中选择标签<select>?</select>

时间:2014-02-26 11:00:31

标签: javascript html html-select

我可以从列表中的所选项目中获取一个标签,但我可以选择多个项目,但我不知道如何从所有选定项目中获取标签。

此问题基于:How to get the selected label from a html <select>?

2 个答案:

答案 0 :(得分:1)

循环遍历referenceToTheSelect.options的NodeList(使用for循环)。测试其中每个元素的selected属性。如果selected为真,请使用标签/值做任何你喜欢的事。

答案 1 :(得分:0)

使用jquery,它的工作原理如下,

 $( "select option:selected" ).each(function() {
       console.log( $( this ).val() ); // for the text
 });