//头部 var head = { search_show: function(){ $(document).on('click', '#header .search', function() { if ($(this).hasClass('in')) { $(this).removeClass('in'); $('.search_outer').removeClass('show'); }else{ $(this).addClass('in'); $('.search_outer').addClass('show'); } }); }, search_hide: function(){ $(document).on('click', '.search_outer .search_in .close', function() { $('#header .search').removeClass('in'); $('.search_outer').removeClass('show'); }); }, lang: function(){ $(document).on('click', '#header .lang', function() { $("#header .lang .lang-box").slideToggle(); }); //阻止冒泡 $(document).on('click', '#header .lang .lang-box', function(e) { e.stopPropagation(); }); }, }; // var products = { // cate: function(){ // $(document).on('click', '#products .sub-nav .cate-box .one', function() { // $(this).toggleClass('cur'); // $(this).parent().siblings().find('.one').removeClass('cur'); // $(this).parent().siblings().find('.two-cate').slideUp(); // $(this).next().slideToggle(); // }); // } // } $(document).ready(function(){ /** 联系我们提交留言**/ $('[feedback]').form({ url:'/api/web/feedback', end: function(data, f) { if (data.ret == 1) { f[0].reset(); } jQ.alert(data.msg, 1); } }); /** 页脚 **/ var wi = $(window).width(); if(wi<=750){ $(document).on("click","#footer .footer_2 .nav .item .tit",function(){ $(this).next().slideToggle(); $(this).parent().siblings().children(".item .ul").slideUp(); $(this).toggleClass("footer_on"); $(this).parent().siblings().find(".tit").removeClass("footer_on"); }); } // 导航下拉 $('#header .nav .one-nav').hover(function(){ $(this).find('.nav-two').show(); var width=$(this).find('.nav-two').innerWidth(); $(this).find('.nav-two').css({'margin-left':-width/2}); },function(){ $(this).find('.nav-two').hide(); }); // 详情页字体 // if($.mobile()){ // $('.editor *,.editor').each(function(){ // var fz = parseInt($(this).css('font-size')) + 3; // if (fz < 24) { // $(this).css({fontSize: '26px'}); // } else { // $(this).css({fontSize: fz + 'px'}); // } // }); // } })