<!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> <input type="text" class="username" placeholder="用户名" /> <input type="password" class="password" placeholder=" 密码" /> <button class="btn">添加</button> <script> var username = document.querySelector('.username'); var password = document.querySelector('.password'); var btn = document.querySelector('.btn'); class Student { constructor(username, password) { this.username = username; this.password = password; } } var studentList = []; btn.addEventListener('click', function () { let student = new Student(username.value, password.value); studentList.push(student); console.log(studentList); }); </script> </body> </html>