自动设置焦点在p:编辑器页面加载



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

相关内容

  • 没有找到相关文章

最新更新