$(function () { $('.my-nav').find('li.dropdown').hover(function () { $(this).addClass('active'); }, function () { $(this).removeClass('active'); }); $(window).on('scroll', function () { if ($(this).scrollTop() >= $(this).height()) { $('.goTop').fadeIn('slow'); } else { $('.goTop').fadeOut('slow'); } }); $('.goTop').on('click', function () { $('body').animate({scrollTop: '0'}, 500); }); $('#search,#searchForm').submit(function () { var val = $('input[name="keyword"]').val(); if (val === '') { alert('璇疯緭鍏ュ叧閿瓧'); return false; } }); // $('.my-nav').find('li.dropdown').hover(function () { $(this).addClass('active'); }, function () { $(this).removeClass('active'); }); $('.product-table').find('.form-check-input').click(function () { var flage = $(this).is(':checked'); if (flage) { $('.compare-btn').removeClass('opacity-25'); } else { $('.compare-btn').addClass('opacity-25'); } }); $('.dropdown-menu li').on('mouseover', function () { var index = $(this).data('index'); $(this).closest('.dropdown-menu').find('li').removeClass('tab-active'); $(this).addClass('tab-active'); $(this).closest('.dropdown-menu').find('.tabs-content-placeholder > div.tab-cont').removeClass('tab-content-active'); $(this).closest('.dropdown-menu').find('.tabs-content-placeholder > div.tab-cont').eq(index).addClass('tab-content-active'); }); $('.left-container').find(".stow-btn").click(function(){ var open = $(".left-container").hasClass("left-container-stow"); if(open){ $(".left-container").removeClass("left-container-stow"); $(this).text("鏀惰捣"); }else{ $(".left-container").addClass("left-container-stow"); $(this).text("灞曞紑"); } }); });