35 lines
756 B
HTML
35 lines
756 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Title</title>
|
||
</head>
|
||
<body>
|
||
|
||
</body>
|
||
<!--<script>-->
|
||
<!-- function getData(res) {-->
|
||
<!-- console.log(res)-->
|
||
<!-- }-->
|
||
<!--</script>-->
|
||
<!--<script src="http://127.0.0.1:3000?a=getData"></script>-->
|
||
<script>
|
||
// 1:拿出手机 (初始化一个新的ajax对象)
|
||
var ajax = new XMLHttpRequest();
|
||
// 2:设置号码
|
||
ajax.open("GET","http://127.0.0.1:3001");
|
||
// 3:拨号
|
||
ajax.send();
|
||
// 4:拨号监听
|
||
ajax.onreadystatechange = function () {
|
||
if (ajax.readyState == 4 ) {
|
||
if (ajax.status == 200) {
|
||
console.log(JSON.parse(ajax.response))
|
||
} else {
|
||
console.log("网络请求出错")
|
||
}
|
||
}
|
||
}
|
||
|
||
</script>
|
||
</html> |