我正在寻找一种方法来说我的 div child li:nth-child(1) - li:nth-child(5) 先隐藏,然后当用户单击某个按钮时,显示 child(6) - 10。下面是更长的代码版本:
$('.history_presss ul li').hide();
$('.history_presss ul li:nth-child(1)').show();
$('.history_presss ul li:nth-child(2)').show();
$('.history_presss ul li:nth-child(3)').show();
$('.history_presss ul li:nth-child(4)').show();
$('.history_presss ul li:nth-child(5)').show();
$('ul.jPag-pages li:nth-child(1)').click(function(){
$('.history_presss ul li').hide();
$('.history_presss ul li:nth-child(1)').show();
$('.history_presss ul li:nth-child(2)').show();
$('.history_presss ul li:nth-child(3)').show();
$('.history_presss ul li:nth-child(4)').show();
$('.history_presss ul li:nth-child(5)').show();
});
$('ul.jPag-pages li:nth-child(2)').click(function(){
$('.history_presss ul li').hide();
$('.history_presss ul li:nth-child(6)').show();
$('.history_presss ul li:nth-child(7)').show();
$('.history_presss ul li:nth-child(8)').show();
$('.history_presss ul li:nth-child(9)').show();
$('.history_presss ul li:nth-child(10)').show();
});