我使用ajax jquery从url http://rid3201.org/site/club_members2.php?id=MTk3Ng==中提取表并附加到div中。但由于域名不同,我无法访问该表中的图像。我怎么解决这个问题。使用以下代码
提取内容 $.ajax(
{
url: '/Member/DownloadUrlData',
type: "POST",
dataType: "html",
async: true,
cache: false,
beforeSend: function (request) {
},
success: function (data) {
// $('#rData').load('data #container');
var html = $.parseHTML(data);
var table = $(html).find('#container>table:first');
$("#rData").append(table);
},
error: function (xmlHttpRequest, textStatus, errorThrown) {
},
complete: function (xmlHttpRequest, textStatus) {
}
});
答案 0 :(得分:2)
使用此代码
$(document).ready(function () {
$('table img').each(function () {
$(this).attr("src", "http://rid3201.org/" + $(this).attr("src").replace('..', ''));
});
});
答案 1 :(得分:0)
var table = $(html).find('#container>table:first');
table.find('img').each(function() {
$(this).attr("src", "http://rid3201.org/" + $(this).attr("src").replace('..', ''));
});