HTNL输入账号密码正确后跳转到另一页面
时间: 2024-01-02 07:10:56 浏览: 278
在 HTML 中,可以通过以下代码实现输入账号密码正确后跳转到另一页面:
```html
<!DOCTYPE html>
<html>
<head>
<title>验证账号密码</title>
<meta charset="UTF-8">
<script>
function checkAccount() {
var username = document.getElementById("username").value; // 获取输入框中的用户名
var password = document.getElementById("password").value; // 获取输入框中的密码
if (username == "admin" && password == "123456") { // 判断用户名和密码是否正确
window.location.href = "success.html"; // 跳转到success.html页面
} else {
alert("用户名或密码不正确,请重新输入!"); // 提示用户名或密码不正确
}
}
</script>
</head>
<body>
<h1>请输入账号密码</h1>
<input type="text" id="username" placeholder="用户名"> <!-- 用户名输入框 -->
<input type="password" id="password" placeholder="密码"> <!-- 密码输入框 -->
<button onclick="checkAccount()">验证</button> <!-- 验证按钮 -->
</body>
</html>
```
其中,`checkAccount()` 函数用于验证账号密码是否正确,如果正确则跳转到 `success.html` 页面,否则弹出提示框提示用户名或密码不正确。需要注意的是,在输入密码时应该使用 `<input type="password">` 来保护用户的隐私。
阅读全文