27 lines
603 B
HTML
27 lines
603 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Document</title>
|
|
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<script>
|
|
$.ajax({
|
|
url: 'http://127.0.0.1/myphp.php',
|
|
type: 'GET',
|
|
success: function(res) {
|
|
console.log(JSON.parse(res));
|
|
|
|
},
|
|
error: function(err) {
|
|
console.log("网络请求失败");
|
|
}
|
|
})
|
|
</script>
|
|
</body>
|
|
</html> |