标签:
$(".tab-title li").on(‘click‘, function(){
$(".tab-title li").eq($(this).index()).addClass("cur").siblings().removeClass(‘cur‘);
$(".tab-con>div").hide().eq($(this).index()).show();
})
标签:
原文地址:http://www.cnblogs.com/stefan-47/p/5687618.html