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');
});
}