0

我想在不替换图像名称的情况下将域 url 添加到图像 src:

域名网址:http ://www.example.com

前:

<img src="images/old.gif">

后:

<img src="http://www.example.com/images/old.gif">

我曾尝试使用 javascript 但没有运气:

document.getElementById("footer").getElementsByTagName("img")[0].src = "http://www.example.com";
4

1 回答 1

1
$("#footer > img").attr("src", "http://site.com/" + $("#footer > img").attr("src") );

或者,您可以尝试查看基本标签:

<head>
    <base href="http://www.w3schools.com/images/" target="_blank" />
</head>

<body>
    <img src="stickman.gif" />
    <a href="http://www.w3schools.com">W3Schools</a>
</body>
于 2012-09-08T04:15:58.333 回答