リンクのURLを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>
リンクのURLを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>
これは可能な限り簡単なことです (これがあまりにも限定的である場合は、RegExp マッチを使用することをお勧めします)。
$(".screenId a").each(function(i,anchor){
anchor.href = anchor.href.replace(window.location.hostname,"www.aaa.com")})
これを試して
$('.screenID a').each(function(){
var link = $(this).attr('href');
$(this).attr('href',link.replace('../','http://www.aaa.com/'));
});
$(".screenID").find("a").each(function(){
var hrefReplace = $(this).attr("href");
$(this).attr("href",hrefReplace.replace("../","http://www.aaa.com/"));
});