创建ajax服务器,获取get参数

1 //创建Ajax服务器获取get参数
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    <p>
        <input type="text" id="username">
    </p>
    <p>
        <input type="text" id="age">
    </p>
    <p>
        <input type="button" value="提交" id="btn">
    </p>
    <script type="text/javascript">
        // 获取按钮元素
        var btn = document.getElementById('btn');
        // 获取姓名文本框
        var username = document.getElementById('username');
        // 获取年龄文本框
        var age = document.getElementById('age');
        // 为按钮添加点击事件
        btn.onclick = function () {
            // 创建ajax对象
            var xhr = new XMLHttpRequest();
            // 获取用户在文本框中输入的值
            var nameValue = username.value;
            var ageValue = age.value;
            // 拼接请求参数
            var params = 'username='+ nameValue +'&age=' + ageValue;
            // 配置ajax对象
            xhr.open('get', 'http://localhost:3000/get?'+params);
            // 发送请求
            xhr.send();
            // 获取服务器端响应的数据
            xhr.onload = function () {
                console.log(xhr.responseText)
            }
        }
    </script>
</body>
</htm>
//服务器端代码
app.get('/get', (req, res) => { res.send(req.query); });
上一篇:【JavaScript】JS函数里的返回值为undefined


下一篇:创建ajax服务器获取post参数