如何自动将焦点设置<p:editor>
在页面加载上?
页面加载后,我希望能够在编辑器中编写,而无需额外单击编辑器面板。
Primefaces 提供属性“widgetVar”,因此您可以从客户端获取元素并聚焦它:
<h:head>
<script type="text/javascript">
function test() {
xxx.focus();
}
</script>
</h:head>
<h:body onload="test()">
<h:form id="form">
<p:inputText id="rongnk" value="test"/>
<p:editor widgetVar="xxx" id="nkrong" value="123" width="600"/>
</h:form>
</h:body>