2013-04-15 113 views

回答

3

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> 
+0

是的,我剛纔測試了,我會更新我的代碼。 –

+0

謝謝,工作正常。 – leostiw

相關問題