我正在开发一个 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()" />