📅  最后修改于: 2022-03-11 15:03:34.753000             🧑  作者: Mango
$(".accordion__headline").click(function () {
if($(this).parent('div').hasClass('expanded')) {
$(this).next('div').slideUp();
$(this).parent('div').removeClass('expanded');
$(this).children('div + .accordion__close').text('ÑаÑкÑÑÑÑ');
$(this).children('.icon-ArrowUp').hide();
$(this).children('.icon-ArrowDown').show();
} else {
$(this).parent('div').addClass('expanded');
$(this).next('div').slideDown();
$(this).children('div + .accordion__close').text('ÑкÑÑÑÑ');
$(this).children('.icon-ArrowDown').hide();
$(this).children('.icon-ArrowUp').show();
}
});