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