我需要执行以下 GET 请求,
telnet somesite.com 80
GET /index.html HTTP/1.0
使用 javascript,jQuery。
我尝试按照本网站中的说明进行操作,尤其是以下代码:
$.ajax({
url: 'http://somesite.com',
success:function(data){
alert(data);
}
});
但它不起作用!
我哪里错了?
我需要执行以下 GET 请求,
telnet somesite.com 80
GET /index.html HTTP/1.0
使用 javascript,jQuery。
我尝试按照本网站中的说明进行操作,尤其是以下代码:
$.ajax({
url: 'http://somesite.com',
success:function(data){
alert(data);
}
});
但它不起作用!
我哪里错了?
试试这个:
$.ajax({
type: "GET",
url: "http://somesite.com",
timeout: 300000,
contentType: "application/json; charset=utf-8",
success: success,
error: failure
});
function failure(response) {
alert(response);
}
function success(response) {
alert(response);
}
如果你想执行跨域请求,试试这个
您可以在 head 标签中使用它
<script src="https://rawgithub.com/IonicaBizau/jQuery-cross-domain-requests/master/js/jquery.xdomainajax.js">
</script>
$.ajax({
url: 'http://somsite.com', // Or your web page link
type: 'GET',
success: function(res) {
alert(res);
}
});