$(function(){ //$(".parentName").wrapInner("").prepend(""); $(".sideMenu .a1").append(""); $(".sideMenu a").each(function(){ if($.trim($(this).attr('id'))== "menuId_" + codeName){ $(this).addClass('aon'); $(this).parents(".sub").show(); } //广州绿道新窗口打开 if($.trim($(this).attr('id'))== "menuId_ldwjs"){ $(this).attr('target','_blank'); } }) $('li.li1 a').click(function(e){ var dropDown = $(this).next(); if(dropDown.length>0){ $('.sub').not(dropDown).slideUp('slow'); dropDown.slideToggle('slow'); e.preventDefault(); } }); })