jquery -Yii获取Selected radio的值

时间:2014-12-13 22:53:17

标签: jquery radiobuttonlist

<div class="form-group field-userform-custtype required">
<label class="control-label" for="custtype1">Custtype</label>
<input type="hidden" name="UserForm[custtype]" value="">
<div id="custtype1" class="flip">           
<label class="radio-inline"><input type="radio" name="UserForm[custtype]" value="1"> B2C</label>
<label class="radio-inline"><input type="radio" name="UserForm[custtype]" value="2"> B2B</label>
<label class="radio-inline"><input type="radio" name="UserForm[custtype]" value="3"> Both</label></div>
<div class="help-block"></div>

</div>

这里我想提取所选无线电的价值。我试图通过以下方式获得价值:

$('input:radio[name=UserForm[custtype]]:checked').val() 

但没有运气。

所需输出:1或2或3,具体取决于选择。

请提前帮助我。

1 个答案:

答案 0 :(得分:4)

您的代码看起来很好。你忘记了名字周围的引号。它应该是这样的:

$('input:radio[name="UserForm[custtype]"]:checked').val()

希望它有用!