我有一个 jquery 文件:
document.getElementById('formId:someId').click();
bla = document.getElementById('formId:inputId3').value;
if(bla =="koko") {
alert(" Done ");
}
在 jsf 我有改变 h:inputText 值的方法:
<h:inputText id="inputId3" value="#{gestionduplanning.testvalue2}" />
<h:commandButton id="someId" value="Button" action="#{gestionduplanning.exec2()}" style="display:none">
<f:ajax render="inputId3" execute="@all"/>
</h:commandButton>
在托管bean中我有:
public void exec2() {
this.testvalue2 = "koko";
}
问题我无法if
在 Jquery 中输入,因为它们在更改之前仍然具有第一个默认值。
在单击按钮之前,我如何更新 Jquery 中的 inputText ?