我需要替换此网址
HTTP:/// PROD / ap4s / appleproducts / iphone / 4S
带
HTTP:///prods.aspx PROD_ID = ap4s
从现有网址获取productId“ap4s”并将其作为查询字符串传递。
('a').each(function(){
$(this).attr('href') <--- Modify href here..
}
我不认为替换在这里有很多帮助。所以寻找一些更好的选择或一些建议,以正确的方向前进......
答案 0 :(得分:1)
$('a').each(function(){
$(this).attr('href','http:///prods.aspx?prod_id='+$(this).attr('href').split('/')[3])
}