$(function(){ var public_ele = $('article.pub1'); $('div.list_wrap:eq(0)', public_ele).show(); $('div.list_wrap:gt(0)', public_ele).hide(); $('ul li ',public_ele).on('click',function(){ var $this = $(this), $button = $this.closest('div').siblings('p').find('a'), $index = $this.index(); $this.siblings('li').removeClass('active'); $this.addClass('active'); $button.attr('href',$this.data('href')); $('div.list_wrap',public_ele).hide(); var index = parseFloat($index) - 1; $('div.list_wrap:eq('+ $index +')',public_ele).show(); }) })