JQuery WildCard替换URL

时间:2012-04-05 18:43:02

标签: jquery

我需要替换此网址

HTTP:/// PROD / ap4s / appleproducts / iphone / 4S

HTTP:///prods.aspx PROD_ID = ap4s

从现有网址获取productId“ap4s”并将其作为查询字符串传递。

('a').each(function(){
   $(this).attr('href')    <--- Modify href here.. 
}

我不认为替换在这里有很多帮助。所以寻找一些更好的选择或一些建议,以正确的方向前进......

1 个答案:

答案 0 :(得分:1)

$('a').each(function(){
   $(this).attr('href','http:///prods.aspx?prod_id='+$(this).attr('href').split('/')[3]) 
}