<html>
head>
script src="https://unpkg.com/axios/dist/axios.min.js"></script>
</bodyinput type="button" value="get请求" class="get"="post请求"="post">
document.querySelector(".get").onclick = function () {
axios.get('https://autumnfish.cn/api/joke/list?num=3')
.then(function (response) {
console.log(response);
})
}
document.querySelector(".post").onclick = function () {
axios.post('https://autumnfish.cn/api/user/reg',{ username: "西西嘛呦" })
.then(function (response) {
console.log(response);
})
}
>