你好在主题中如何从选中的按钮获取值(文本)? 这是我的例子:
<div id="wyposazenie" style="display: table-row">
<label>Wyposażenie dodatkowe:</label>
<input type="checkbox" id="check1" /><label for="check1">Projektor</label>
<input type="checkbox" id="check2" /><label for="check2">Odtwarzacz CD</label>
<input type="checkbox" id="check3" /><label for="check3">Inne</label>
</div>
如果选中按钮#check1,如何获取示例值“Projektor”?如果选中多个按钮,如何获得多个值
答案 0 :(得分:4)
您可以使用.map()
:
var arr = $("#wyposazenie :checkbox:checked").map(function() {
return $(this).next().text();
}).get();
只要您需要,就可以运行它,它将获得所有已检查的<input>
元素标签的数组。