性夜影院爽黄a爽免费视_一级特黄aaa大片在_一级做a爰片久久毛片免费_奇米精品一区二区三区在线观看 - jizz国产

Bootstrap 5一級菜單改成可以點擊

發布時間:2025-06-13點擊次數:14

if ($(window).width() >= 992) {

      $('.navbar .dropdown > .nav-link').on('click', function(e) {

        // 如果點擊的是有下拉菜單的鏈接

        if ($(this).next('.dropdown-menu').length) {

          // 阻止默認的Bootstrap事件

          e.preventDefault();

          e.stopPropagation();


          // 如果當前是展開狀態則跳轉,否則先展開

          if ($(this).parent().hasClass('show')) {

            window.location.href = $(this).attr('href');

          } else {

            $(this).parent().addClass('show');

            $(this).next('.dropdown-menu').addClass('show');

          }

        }

      });


      // 鼠標懸停展開下拉菜單

      $('.navbar .dropdown').hover(function() {

        $(this).addClass('show');

        $(this).find('.dropdown-menu').addClass('show');

      }, function() {

        $(this).removeClass('show');

        $(this).find('.dropdown-menu').removeClass('show');

      });

    }