function displace(wrapArr){ for(var i = 0 ;i < wrapArr.length;i++){ if (wrapArr[i].indexOf('#') != -1) {//浼犲叆鐨勬槸ID setnewpub($(wrapArr[i]),'id'); } else {//閫氳繃鏍峰紡鑾峰彇 // 寰幆骞垮憡澶栧眰鏍峰紡鏁扮粍 $.each($(wrapArr[i]),function(index,item){ setnewpub($(item),'class'); }); } } } function setnewpub(thatA,idorclass){ var thisAele = thatA.find('a'),//鑾峰彇鏁扮粍涓笅鐨刟鏍囩 thisFather = thisAele.parent();//鑾峰彇a鏍囩鐨勭埗鍏冪礌 // 寰幆鎵€鏈塧鏍囩 for(var j = 0 ;j < thisAele.length;j++){ var thisHref = thisAele.eq(j).attr('href'); if(thisHref == ''){ var thisIndex = j,//鑾峰彇a鏍囩鍦ㄧ埗鍏冪礌涓殑浣嶇疆 copyHtml = thisAele.eq(j).html(); console.log(thisAele.length+'-'+thisIndex); var wrapDiv = $('
'+copyHtml+'
'); thisAele.eq(j).remove(); if (idorclass == 'class') {//澶栧眰鐖跺厓绱犳槸class if(thisIndex == 0){//濡傛灉鏄1涓猘涓虹┖閭d箞浠庡ご鎻掑叆 // thisFather.append(wrapDiv); thisFather.prepend(wrapDiv); }else{//濡傛灉鏄2涓猘涓虹┖閭d箞浠庢湯灏 thisFather.append(wrapDiv); } } else { thisFather.append(wrapDiv); } }else{ continue; } } } var wrapArr = ['.pubDiv','.pubDivR','.pubDivN','.pubDiv600','#popL','#popR','.left240','.right240']; displace(wrapArr);