0

我正在开发一个 JSF 2.0 应用程序。如何检查从我的 Java 脚本/jquery 代码中选择了哪个单选按钮?

我的单选按钮代码是

   <t:selectOneRadio id="options" value="#{reqscope.selectedRadio}" layout="spread">
        <f:selectItem itemValue="policynum" itemLabel="Policy number" />
        <f:selectItem itemValue="custId" itemLabel="Customer ID" />    
</t:selectOneRadio>


   <t:radio for="options" index="0"  name="search_by1" onclick="policyradioselected()" />
    <t:radio for="options" index="1"  name="search_by" onclick="customerradioselected()" />
4

1 回答 1

0
$('input[name=options]:checked').val()

假设生成的 html 对于输入看起来像这样应该可以工作:

<input type="radio" name="options" id="options:0" value="Yourvalue1" />
于 2013-08-09T08:47:22.300 回答