0
4

3 回答 3

2

试试这个

   $("a").each(function() { 

          var newUrl =  $(this).attr('href')+ textOfNew + " ";

              $(this).attr('href',newUrl);

    });
于 2013-03-16T16:57:33.013 回答
2
于 2013-03-16T17:04:50.890 回答
0
$("a").each(function() { 

    newUrl += $(this).attr("href") + textOfNew + " ";

    $(this).attr("href", newUrl);

});
于 2013-03-16T17:02:36.180 回答