<!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" />
<script src="https://unpkg.com/axios@0.24.0/dist/axios.min.js"></script>
<title>Document</title>
<style>
p {
font-weight: bold;
font-size: 22px;
color: orangered;
}
</style>
</head>
<body>
<h1>每天一句土味情话</h1>
<p></p>
</body>
<script>
const p = document.querySelector("p");
const url = "https://api.vvhan.com/api/love?type=json";
axios
.get(url)
.then(function (response) {
const text = response.data.ishan;
p.innerHTML = text;
})
.catch(function (err) {
console.log(err);
});
</script>
</html>