$(function () { $('[data-dropdown-menu="true"]').click(function(){ var _target = $(this).find('[data-dropdown-content]').data('dropdown-content') $('.' + _target).addclass('show') }) $('body').click(function(e){ var _target =$(e.target) if (!_target.is('[data-dropdown-menu="true"]') || _target.closest('[data-dropdown-menu="true"]').lenght==0){ var hidetarget = $('[data-dropdown-menu="true"]').find('[data-dropdown-content]').data('dropdown-content') $('.' + hidetarget).removeclass('show') } }) $('.search-btn').click(function (e) { e.preventdefault(); var _words =$(this).closest('div').find('[name="keyword"]').val() if($.trim(_words)==""){ return false } location.href = '/home/index/search?&keyword='+_words }); $('.search-page-btn').click(function (e) { e.preventdefault(); var _words =$(this).closest('div').find('.search-page-text').val() if($.trim(_words)==""){ return false } location.href = '/home/index/search?&keyword='+_words }); if($('.list-banner-wapper').length!=0){ new swiper('.list-banner-wapper', { effect: 'fade', autoplay: 3000, simulatetouch: false, loop: true }) } var pwd = 'f379eaf3c831b04de153469d1bec345e' $('.pwd-item .button').click(function(e){ if(hex_md5($('.pwd-item input').val()) == pwd){ $('.pwd-content').css('visibility','visible') $('.pwd-input').hide() } else { $('.pwd-err').show() } }) });