使用如下所示的FacesContext从服务器端收集焦点,
FacesContext fc = FacesContext.getCurrentInstance();
fc.getExternalContext().getRequestMap().put("focus", "addform:elementid");
XHtml如下所示,
<h:form id="addform">
<t:panelGrid id="elementid" columns="1" width="280">
<t:column colspan="4"></t:column>
</t:panelGrid>
</h:form>
它在IE 11中可以正常工作,但不能专注于Chrome版本73.0。 为什么要在Chrome中遇到此问题??