//去左右空格; function trim(s) { return s.replace(/(^\s*)|(\s*$)/g, ""); } function openbtn (elem,full=true){ layer.closeall(); $(elem).addclass('active'); if(full){ $('body').addclass('overflow-hidden'); } } function closebtn (elem){ layer.closeall(); $(elem).removeclass('active'); $('body').removeclass('overflow-hidden'); } // $('#search_so').on('click', function() { // if ($("#search_key").val() == '') { // layer.tips('填写搜索产品!', '#search_key', { tips: [1, '#17255e'] }); // $("#search_key").focus(); // } else { // // window.open("/product?keywords=" + $("#search_key").val(), '_self'); // } // }); // $(window).scroll(function() { var windowtop = $(window).scrolltop(); var nmh = $("#name_box_w").height(); if (windowtop > nmh) { $("#name_box_w").stop(false, false).addclass('boxshow'); } else { $("#name_box_w").stop(false, false).removeclass('boxshow'); } }); // if($('.slider_type_list dl').length > 0){ // $('.slider_type_list dl dt').click(function(){ // if($(this).parent().hasclass('active')){ // $(this).parent().removeclass('active'); // }else{ // $(this).parent().addclass('active'); // } // if($('.slider_type_list dl').length > 1){ // $(this).parent().siblings().removeclass('active'); // } // }); // }