我的f:ajax事件被触发两次。以下是代码。
<h:panelGroup id="test" layout="block">
<div class="checkbox #{MB.addNewForm eq 'true' ? 'checked' : ''}">
<label>
<input name="checkboxOption0" type="checkbox" />
<strong>Add new account</strong>
</label>
</div>
<f:ajax event="click" render="@all" execute="@form" listener="#{MB.toggleAddNewAccountForm}" />
如何阻止它被触发两次。