2

我正在使用 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) {
       }
   });
4

2 回答 2

2

使用此代码

$(document).ready(function () {
    $('table img').each(function () {
        $(this).attr("src", "http://rid3201.org/" + $(this).attr("src").replace('..', ''));
    });
});

工作演示 http://jsfiddle.net/cse_tushar/KGGaG/2/

于 2013-07-24T05:27:15.327 回答
0
var table = $(html).find('#container>table:first');
table.find('img').each(function() {
    $(this).attr("src", "http://rid3201.org/" + $(this).attr("src").replace('..', ''));
});
于 2013-07-24T06:14:49.330 回答