在我的表单中,工具提示出现问题,该提示不能在所有按钮上正常工作。单击或鼠标悬停后自动隐藏的工作方式不一致。我尝试了工具提示的showevent和hideevent仍然无法正常工作。我在下面给出了我的代码。我应该做出什么改变
<h:outputLink id="arrow_up" value="#">
<p:commandButton icon="fa fa-arrow-circle-up"
type="submit"
rendered="#{editBean.renderEditMode}"
update="listView messages"
action="#{editBean.moveStackUp(editBean.listLineForm,
editBean.linesSelected)}"
>
<p:tooltip id="toolTipTrackforMoveUp"
for="arrow_up"
value="Move Row Up"
trackMouse="true"
showEvent="mouseover"
hideEvent="mouseleave click"
globalSelector="[data-tooltip]"
position="top"
/>
</p:commandButton>
</h:outputLink>
屏幕截图: