0

如何确保仅在单击 h3 时手风琴打开和关闭?当您单击任何 h3 时,它会立即关闭。请看下面的代码:

function accordion() {
    $('h3').click(function () {
        $('.box2').slideUp('normal');
        if ($(this).next().is(':hidden') == true) {
            $(this).next().slideDown('normal')
        }
    })
}
$(document).ready(function () {
    $(window).on("resize", function () {
        if ($(this).width() < 480) {
            accordion();
        } else if ($(this).width() > 480) {
            $('.box2').fadeIn(2000)
        }
    })
});
4

0 回答 0