我有这个代码
$(".tooltip").each(function(){
var tooltip = this.title;
this.title = "";
$(this).live("mousemove",function(e){
$("#tooltip").html(tooltip).show();
}).live("mouseout",function(){
$("#tooltip").hide().empty();
});
});
它工作得很好,但是通过 ajax 动态加载的元素呢?谢谢