Jsf 2 Richfaces中的文本框焦点

Jsf 2 Richfaces中的文本框焦点,jsf-2,richfaces,Jsf 2,Richfaces,我已经在文本框中的焦点从样本项目。我使用JSF2.0、RichFaces4.3.0final.jar和JBoss7服务器。我可以成功地运行该项目,但focus不起作用。当我按tab键时,焦点到达文本框。如果有什么需要我做的,请告诉我 提前谢谢。最后,我拿到了。我将javascript代码放在jsf格式中,如下所示。 Finally, I got it. I put the javascript code in the jsf form just like this. <h:form id=

我已经在文本框中的焦点从样本项目。我使用JSF2.0、RichFaces4.3.0final.jar和JBoss7服务器。我可以成功地运行该项目,但focus不起作用。当我按tab键时,焦点到达文本框。如果有什么需要我做的,请告诉我

提前谢谢。

最后,我拿到了。我将javascript代码放在jsf格式中,如下所示。
Finally, I got it. I put the javascript code in the jsf form just like this.
<h:form id="frm">
<script type="text/javascript"> 
window.onload = function() {
        document.getElementById('frm:txtStaffId').focus();
}
</script>
...
...
<h:inputText id="txtStaffId"/>
...
...
</h:form>
window.onload=函数(){ document.getElementById('frm:txtStaffId').focus(); } ... ... ... ...