我有这个表格
<h:form id="formId" prependId="false">
Descrizione <h:inputTextvalue="#{bean.description}" />
Prezzo: <h:inputText value="#{optionalManaged.price}" />
<a4j:commandLink styleClass="button smallButton" actionListener="#{bean.method}"
execute="formId" render="otherDiv">
+
</a4j:commandLink>
</h:form>
目前,按下 a4j:commandLink 将两个输入文件的值存储在我的 bean 中,并正确调用我的动作侦听器。
我想要发生的是,在第二个 inputText 上按 enter 也是如此。
我通过 jquery 从 inputText 内部调用 a4j:commandLink click() 进行了天真的尝试。这显然行不通。
关于我如何做到这一点的任何想法?