我是网络编程的新手。以前我在java模块工作过。我希望通过点击特定网址获得http响应。我正在寻找w3c学校,我正在尝试仍然没有结果。请帮助我,我想要完整的网页源。
代码:
<html>
<head>
<script src="jquery.js">
</script>
<script>
var response = '';
$.ajax({ type: "GET",
url: "http://www.google.com",
async: false,
success : function(text)
{
response = text;
}
});
alert(response);
</script>
</head>
<body>
<input type="button" value="submit" />
<p>hello how are you </p>
</body>
</html>
答案 0 :(得分:4)
来自JQuery ajax方法documentation:
由于浏览器安全限制,大多数“Ajax”请求都遵循相同的原始策略;请求无法从其他域,子域,端口或协议中成功检索数据。
答案 1 :(得分:0)
您还可以添加错误回调并对其进行调试。
$.ajax({ type: "GET",
url: "http://www.google.com",
async: false,
success : function(data, textStatus)
{
alert(data);
alert(textStatus);
},
error : function(XMLHttpRequest, textStatus, errorThrown)
{
alert(XMLHttpRequest);
alert(textStatus);
alert(errorThrown);
}
});