将提交按钮更改为Ajax请求后,表格的自动填充将不再起作用。
以下代码段适用于Chrome和Firefox:
<h:form>
<h:inputText />
<h:commandButton type="submit" value="Submit"></h:commandButton>
</h:form>
例如,如果我输入“ test”,那么下次我使用该字段时将建议“ test”。 如果我将请求更改为Ajax,则自动填充将不起作用。
<h:form>
<h:inputText />
<h:commandButton type="submit" value="Submit">
<f:ajax render="@form" execute="@form"/>
</h:commandButton>
</h:form>
您知道为什么它不适用于ajax吗?