仅当鼠标位于outputText
区域时,我才需要显示panel
组件。我怎样才能做到这一点?
我尝试使用show()
& hide()
js在onmouseover
上的panel
事件中发挥作用,但未能取得成果。
答案 0 :(得分:2)
如果我理解正确
<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>