我当前正在使用本地服务器(例如:localhost:99999 / main),我正在尝试查看是否可以从实际站点提取数据或html(例如:https://developers.google.com/)。到目前为止我用过:
function pullWeb(){
var url = "https://developers.google.com/",
$.ajax({
type: 'GET',
url: url,
dataType: 'jsonp', // I've also used html
success: function (data) {
console.log('hit it');
},
error: function (exception) { alert('Exeption:' + exception); }
});
}
提取实时网站数据是否有限制?目前它通过调用并给我一个错误,但它只是{对象;对象}