我需要将src
html 图像标记从相对 url 更改为绝对 url。
我正在使用以下代码。urlRelative 和 urlAbsolute 已正确创建,但我无法修改最后一行中的图像。
我的脚本可能有什么问题?
..... // other code here
request.done(function(resp) {
var imgTags = $('img', resp).each(function() {
var urlRelative = $(this).attr("src");
var urlAbsolute = self.config.proxy_server + self.config.location_images + urlRelative;
$(this).attr("src").replace(urlRelative, urlAbsolute); // problem here
});