-1

我想替换这样的链接网址http://www.aaa.com /html/html/a01.html

<td class="screenID"><a href="../html/html/a01.html">a01</a></td>
<td class="screenID"><a href="../html/html/a02.html">a02</a></td>
4

3 回答 3

2

这是可能工作的最简单的事情(如果这太有限,您可能想要使用 RegExp 匹配)

$(".screenId a").each(function(i,anchor){    
    anchor.href = anchor.href.replace(window.location.hostname,"www.aaa.com")})
于 2012-12-27T02:53:04.917 回答
0

尝试这个

$('.screenID a').each(function(){
    var link = $(this).attr('href');
    $(this).attr('href',link.replace('../','http://www.aaa.com/'));
});
于 2012-12-27T02:35:52.940 回答
0
$(".screenID").find("a").each(function(){
    var hrefReplace = $(this).attr("href");
    $(this).attr("href",hrefReplace.replace("../","http://www.aaa.com/"));
});
于 2012-12-27T02:37:14.440 回答