2011-06-21 20 views

答えて

1

私が正しく

<script> 
     $(document).ready(function(){ 
     $("#something").mouseover(function(){ 
      $("#myText").show(); 
     }) 
     $("#something").mouseout(function(){ 
      $("#myText").hide(); 
     } 
    )} 
    ); 

そして、あなたのパネルを理解している場合

<p:panel id="something" > 
      <h:outputText id="myText" styleClass="hidden" value="hi i am hidden when is mouse is somewhere"/> 
     </p:panel> 
関連する問題