回复 4楼 境善
$('.introduce li').mouseover(function(){
var index=$(this).attr('navindex');
show(index);
});
$('.introduce li').mouseenter(function(){
//
var index=$(this).attr('navindex');
show(0);
});
进入事件显示
悬停事件就显示首项或者尾项或者。。。不显示
bug应该是index的值由于悬停位置的偏移导致的