获得附加到无线电的元素的价值

时间:2016-07-04 15:51:01

标签: javascript jquery input radio-button label

当我使用jQuery在一对单选按钮中选择一个收音机时,如何获得.coefficient的值?

<label class="bet-team-box" for="radio-1">
    <input class="bet-main-input" id="radio-1" name="group1" type="radio">
    <span class="fake-label">
        <span class="team">
            Midnight Sun Esports
        </span>
        <span class="img-box">
            <img src="images/logo-team-04.png" alt="image description" width="20" height="20" />
        </span>
        <span class="coefficient">
            12.43
        </span>
    </span>
</label>

2 个答案:

答案 0 :(得分:1)

您可以使用 variableLengthArray[0]=6 variableLengthArray[1]=6 variableLengthArray[2]=6 variableLengthArray[3]=5 variableLengthArray[4]=5 variableLengthArray[5]=5 获取父closest()元素,然后使用label获取find()。试试这个:

coefficient

答案 1 :(得分:0)

不确定它是否是最佳方式,但您可以像这样找到它。

 $("#radio-1").click(function()
 {
   $($($(this).siblings()[0]).children('span.coefficient')).text();
});