47 lines
937 B
HTML
47 lines
937 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Title</title>
|
||
</head>
|
||
<body>
|
||
|
||
<ul>
|
||
|
||
</ul>
|
||
|
||
</body>
|
||
<script>
|
||
// function geData(res) {
|
||
// console.log(res)
|
||
// }
|
||
</script>
|
||
<!--<script src="http://127.0.0.1/list.php?name=geData"></script>-->
|
||
<script>
|
||
|
||
// // 1:拿出手机
|
||
// var http = new XMLHttpRequest() // xhr
|
||
//
|
||
// // 2:设置拨号方式和手机号码
|
||
// http.open("GET","http://127.0.0.1/list.php");
|
||
//
|
||
// // 3:拨号
|
||
// http.send()
|
||
//
|
||
// // 4:拨号的状态监听
|
||
// http.onreadystatechange = function () {
|
||
//
|
||
// if (http.readyState == 4) {
|
||
// if (http.status == 200) {
|
||
// var data = JSON.parse(http.response);
|
||
//
|
||
// data.result.forEach(v=> {
|
||
// document.querySelector("ul").innerHTML += `<li>${v.title}</li>`
|
||
// })
|
||
// } else {
|
||
// console.log("请求错误")
|
||
// }
|
||
// }
|
||
// }
|
||
</script>
|
||
</html> |