我在the demo of Richfaces Showcase的文本框中制作了焦点示例项目。我使用JSF 2.0,Richfaces 4.3.0 Final.jar和Jboss 7服务器。我可以成功地运行该项目,但重点不起作用。当我按Tab键时,焦点到达文本框。如果有任何我需要的话,请告诉我。
提前致谢。
答案 0 :(得分:0)
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>