如何隐藏jquery ui tabs状态栏URL

时间:2012-12-16 15:53:03

标签: jquery

我使用以下方法隐藏状态栏消息。

<a href="javascript:void(0)" onfocus="blur()" id="test">TEST</a>
$('#test).click(function(){ 
   ...
}

如何在鼠标悬停时隐藏标签状态栏网址?

1 个答案:

答案 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();
});

API参考:http://api.jquery.com/hover/