我有一个页面jsf包含selectOneRadio,我想将jQuery与此组件关联。 我希望每个选定的值,一个函数jQuery启动。
<h:panelGrid columns="2" style="margin-bottom:10px" cellpadding="5">
<p:outputLabel for="console" value="Console:" />
<p:selectOneRadio id="console" value="#{lotBean.model.type_lot}">
<f:selectItem itemLabel="Xbox One" itemValue="Xbox One" />
<f:selectItem itemLabel="PS4" itemValue="PS+" />
<f:selectItem itemLabel="Wii U" itemValue="Wii U" />
</p:selectOneRadio>
</h:panelGrid>
答案 0 :(得分:0)
尝试 (这需要采用一种形式)
JSF:
<p:selectOneRadio id="console" value="#{lotBean.model.type_lot}">
<f:selectItem itemLabel="Xbox One" itemValue="Xbox One" />
<f:selectItem itemLabel="PS4" itemValue="PS+" />
<f:selectItem itemLabel="Wii U" itemValue="Wii U" />
</p:selectOneRadio>
Jquery的:
var input = $( "form input:radio" )