📅  最后修改于: 2022-03-11 14:55:58.485000             🧑  作者: Mango
$('.row').not(':first').css('display', 'none');
$('.row > a').click(function() {
$(this).parents('.row').toggle();
$(this).parents('section').next('section').find('.row').toggle();
})