1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
   |  $('.tab-body li').first().addClass('active'); var type = 0;
  var totalWidth = 0; $('.tab-body li').each(function(index, el) {     totalWidth += $(el).width()+parseInt($(el).css('margin-right')); }); $('.tab-body ul').css({     'width': (totalWidth + 50)+ 'px' });
  $('.tab-body li').on('click',function(){     $('.tab-body li').removeClass('active');     $(this).addClass('active');     type = $(this).attr('data-key');     var param = {         articleType: type,         pageNo: 1,         pageSize: 4     }     $.ajax({         url: '/inspiration/home/api',         type: 'POST',         dataType: 'json',         data: param,         success: function(data){                      },         error: function(xhr){             console.log(xhr)         }     });          });
 
  |