如何在(ALL)单选按钮中获取两个单选按钮值,注意All是我的代码中的一个单选按钮

时间:2018-12-05 13:37:21

标签: jquery codeigniter-2

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>

我想触发一个查询,该查询将有助于获取“所有单选按钮”中的第二个和第三个按钮值。

1 个答案:

答案 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);
});