我使用以下方法隐藏状态栏消息。
<a href="javascript:void(0)" onfocus="blur()" id="test">TEST</a>
$('#test).click(function(){
...
}
如何在鼠标悬停时隐藏标签状态栏网址?
答案 0 :(得分:2)
使用管理mouseenter和mouseleave的hover()
方法。
$('#test').hover(function(){
$('#statusElement').toggle()/* hide or show*/
})
hover()
也可以将第二个函数作为mouseleave
事件的参数
$('#test').hover(function(){
/* first function is mouseenter*/
$('#statusElement').show();
},function(){
/* second function is mouseleave*/
$('#statusElement').hide();
});