This the code
<label class="opetionLabel">
<input class="col-4 optionStyle" type="radio" name="select_all" value="all"> All.
</label>
<label class="opetionLabel">
<input class="col-4 optionStyle" type="radio" name="select_all" value="From Station" > From Station
</label>
<label class="opetionLabel">
<input class="col-4 optionStyle takeClass" type="radio" name="select_all" value="ToStation "> ToStation
</label>
我想触发一个查询,该查询将有助于获取“所有单选按钮”中的第二个和第三个按钮值。
答案 0 :(得分:0)
您可以使用jQuery库的eq()方法执行此操作。请记住,eq()方法使用的DOM元素的索引从0开始。 要获取第二个输入的值,我们需要调用索引号1。
$(document).ready(function(){
var second = $('input[name=select_all]').eq(1).val();
var third = $('input[name=select_all]').eq(2).val();
alert(second);
alert(third);
});