/* ============================================================ * jquery.dropdown.js 下拉js * ============================================================ */ !function($) { // 定义下拉开关 var dropdownToggle = '.J_dropdown'; $(document).off('click',dropdownToggle).on('click',dropdownToggle, function() { var $this = $(this), isActive; if ($this.is('.disabled, :disabled')) return; isActive = $this.hasClass('open'); clearMenus(); if (!isActive) { $this.css('position', 'relative'); $this.toggleClass('open'); // 点击网页空白区域隐藏下拉框 $(document).on('click', function(e) { var target = $(e.target); if (target.closest(".J_dropdown").length == 0) { clearMenus(); }; }); }; }); function clearMenus() { $(dropdownToggle).each(function() { $(this).removeClass('open'); $(this).css('position', ''); }) } // 阻止事件冒泡 此注释lww添加 /*$('.J_dropdown_menu').on('click', function(e) { e.stopPropagation(); });*/ }(window.jQuery);