我想成功获取google.com,我不在乎是否使用jquery,我只想以某种方式获取它(即不使用javascript 库很好,例如XMLHttpRequest 也很好)。这是我从本地机器上加载 jquery 的 test.html 页面放入控制台的示例 ajax 调用:
var url = 'http://google.com';
$.ajax({
type: 'GET',
url: url,
error: function(req, resp) {
console.log('Error fetching ' + url);
console.log("req:");
console.log(req);
console.log("resp:");
console.log(resp);
},
success: function(data) {
console.log("success! here's the data:");
console.log(data);
}
});
非常感谢您的帮助!