<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<script>
const url = "https://api.vvhan.com/api/la.ji?lj=%E7%85%A7%E7%89%87";
const xhr = new XMLHttpRequest();
xhr.onreadystatechange = () => {
if (xhr.readyState !== 4) {
return false;
}
if ((xhr.status >= 200 && xhr.status < 300) || xhr.status === 304) {
console.log("数据请求成功");
console.log(xhr.responseText);
}
};
xhr.open("GET", url, true);
xhr.send(null);
</script>
</body>
</html>