学到插件 自己也倒弄出来一个。
效果图如下:
代码如下:
').appendTo('body');
var d=$("#conBox");
this.bind({
mouseover:function(){
if(!$("#conBox")){
$('
').appendTo('body');
}else{
d=$("#conBox");
}
var of=$(this).offset();
var title=$(this).attr("title");
//定义位置
d.css({top:of.top+$(this).height()+"px",left:$(this).width()/2+of.left+"px"}).text($(this).attr("title"));
//显示
d.fadeIn();
},
mouseout:function(){
//鼠标一走隐藏
d.fadeOut();
}
});
}
});
//调用
$(".ll").showTitle();
});
[Ctrl+A 全选 注:
如需引入外部Js需刷新才能执行]