//产品页分类 $(function(){ $(".yx_icon1").on('click',function(){ $(".yx_icon1").css('transform','translateY(-50%) rotate(0deg)'); $(this).css('transform','translateY(-50%) rotate(90deg)').parent().next(".yx_PPBox2").slideToggle('slow'); $(this).parents().siblings().find(".yx_PPBox2").slideUp('slow'); }); $(".yx_icon2").on('click',function(){ $(".yx_icon2").css('transform','translateY(-50%) rotate(0deg)'); $(this).css('transform','translateY(-50%) rotate(90deg)').parent().next(".yx_PPBox3").slideToggle('slow'); $(this).parents().siblings().find(".yx_PPBox3").slideUp('slow'); }); //产品页分类高亮 var pathName = window.location.pathname; // 获得路径信息 var subUrl = pathName.substring(pathName.lastIndexOf("/")); $(".yx_PPBox .yx_PT_Link").each(function(){ // 遍历a链接的路径 var aLinkUrl = $(this).attr("href"); // 得到a链接的路径 if(aLinkUrl == pathName){ $(this).addClass("yx_Click"); $(this).parentsUntil(".yx_MoPageBtn").slideDown('slow'); $(this).parent("").next(".yx_PPBox").slideDown('slow'); return; }; }); });