$(".navcon a").mouseover(function(){
var that = $(this),
index = that.index();
that.addClass(‘cur‘);
$(".tl").stop().animate({left:100*index},100);
});
原文地址:http://www.cnblogs.com/xupeiyu/p/3860933.html