1

Richfaces Showcase のデモから、テキスト ボックスにフォーカスのあるサンプル プロジェクトを作成しました。JSF 2.0、Richfaces 4.3.0 Final.jar、および Jboss 7 サーバーを使用しています。プロジェクトを正常に実行できますが、フォーカスが機能しませんでした。Tab キーを押すと、フォーカスがテキスト ボックスに移動します。設定する必要がある場合は、アドバイスしてください。

前もって感謝します。

4

1 に答える 1

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>
于 2013-11-15T03:03:22.873 に答える