-1

我想访问一个网站并使用“ajax调用”从中获取锚标签,如下所示:

$.ajax({
    url: 'https://www.facebook.com/',
    type: 'GET',
    success: function(res) {
        var headline = $(res.responseText).find('a').text();
        alert(headline);
    }
});

但我的标题是空白的。但是我尝试使用“http”网站使用相同的代码,它工作正常。

4

1 回答 1

0

这是因为https与 不同http,Facebook 就像许多其他网站一样使用 cookie 进行身份验证。您必须先进行身份验证,https://facebook.com然后才能取回数据。

于 2013-02-04T09:27:51.970 回答