$(".p-list > ul > li").click(function () {
if ($(this).children('.sub-parts').length > 0) {
if (!$(this).hasClass('open')) {
$(this).addClass('open');
$(this).find('.sub-parts').fadeIn('normal');
}
}
});
$(document.body).on('click', ".p-list .open-tl", function () {
if ($(this).parent('.open').length > 0) {
$open = $(this).parent('.open');
$($open).find('.sub-parts').hide();
$($open).removeClass('open');
}
});
我有这段代码可以在点击时隐藏 div,并在他们点击 open'tab .open-tl 时显示它们。
问题是当我不想运行第二个代码时,第二个代码在 Fadein 代码之后执行。