如何在页面加载时自动设置<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>