xmlhttp js 请求

Posted 小白闯天下

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xmlhttp js 请求相关的知识,希望对你有一定的参考价值。

<html>
<script>
 
var xhr = new XMLHttpRequest();
xhr.open(‘GET‘, "http://ipinfo.io/json", true);
xhr.send();
 
xhr.onreadystatechange = processRequest;
 
function processRequest(e) {
 
	if (xhr.readyState == 4 && xhr.status == 200) {
        var response = JSON.parse(xhr.responseText);
           alert(response.ip);
    }
}

</script>
</html>

  

以上是关于xmlhttp js 请求的主要内容,如果未能解决你的问题,请参考以下文章

js 之 Post发送请求

JS GET POST请求

xmlhttp用post发送请求,但是servlet接收到的request里面,获取不到参数

纯js调用webservice接口怎么调用

用JS实现Ajax请求

基于浏览器的 xmlhttp/js/perl/php 游戏的作弊预防