.load()无法在具有相同域的页面上工作

时间:2017-06-21 23:36:56

标签: jquery ajax load

我试图在同一个网站上将div从一个页面加载到另一个页面。我没有收到任何错误,但div没有填充

$("#review-1").load("https://www.someurl.com div[data-comment-id='111']");
$("#review-2").load("https://www.someurl.com div[data-comment-id='222']");

ajax get也无效

$.ajax({
    url: 'https://www.someurl.com',
    type: 'GET',
    success: function(res) {
      var data = $.parseHTML(res); 
        $(data.responseText).find('div[data-comment-id="111"]').each(function(){
            $('#review-1').append($(this).html());
        });
    }
});

0 个答案:

没有答案