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 请求的主要内容,如果未能解决你的问题,请参考以下文章