單擊h:commandButton
但希望更新id爲「contents」的div,但複雜的部分是h:commandButton在c:forEach
中,因此存在多個h:commandButton
s。我想要點擊任何一個命令按鈕時刷新div。有可能使用ajax或jQuery?單擊commandButton時更新div
1)
<h:form>
<div id="contents">
<c:forEach var="p" items="#{statusBean.statusList}">
<h:commandButton>Click Me</h:commandButton>
//content
</c:forEach>
</div>
</h:form>
發表您的facelet代碼。 – partlov 2013-03-11 19:33:38
我已經包括了一些代碼的形式我Home.xhtml頁 – 2013-03-11 20:39:06