青春纸盒子

文: 芦苇

你喜欢我笑的样子

我靠上了落寞的窗子

晚风吹起了我的袖子

明月沾湿了你的眸子


转身,你走出了两个人的圈子

树影婆娑,整座院子


挽起袖子

回头,把揽你忧伤一地的影子

装进,青春,这纸盒子


更多代码请关注我的微信小程序: "ecoder"

luwei0915

导航

002_后端--jq+ajax带参数请求数据

<!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>
    <script src="../lib/jquery-3.6.0.min.js"></script>
</head>

<body>
    <button id="bt1">发起带参数的请求</button>
    <script>
        $(function () {
            $("#bt1").on('click', () => {
                $.get('http://www.liulongbin.top:3006/api/getbooks', { id: 1 }, (res) => {
                    console.log(res)
                })
            })
        })
    </script>

</body>

</html>

 

posted on 2021-09-24 00:11  芦苇の  阅读(38)  评论(0编辑  收藏  举报