js写一个登陆界面,输入用户名和密码,实现跳转到新窗口,并显示当前登 陆时间。
时间: 2024-09-27 14:03:55 浏览: 36
使用VScode写一个html页面
5星 · 资源好评率100%
在JavaScript中创建一个简单的登录界面,你可以使用HTML结构作为基础,结合JavaScript事件处理函数来获取用户输入并实现页面跳转以及显示当前登录时间。这里是一个基本示例:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>登录界面</title>
</head>
<body>
<h2>登录</h2>
<form id="loginForm">
<label for="username">用户名:</label><br>
<input type="text" id="username" name="username"><br>
<label for="password">密码:</label><br>
<input type="password" id="password" name="password"><br>
<button onclick="login()">登录</button>
</form>
<script>
function login() {
// 获取用户输入
const username = document.getElementById('username').value;
const password = document.getElementById('password').value;
// 验证登录信息 (这只是一个示例,实际应用中需要服务器验证)
if (/* 验证用户名和密码 */) {
// 创建一个新的窗口进行跳转
const newWindow = window.open('', '_blank');
// 设置新窗口的标题和内容
newWindow.document.title = '欢迎 ' + username;
newWindow.document.write('<p>您已成功登录,当前时间是:</p>');
newWindow.document.write(`<p>${new Date().toLocaleString()}</p>`); // 显示当前登录时间
// 关闭原始窗口(如果不需要则可以删除)
self.close();
} else {
alert('用户名或密码错误,请重试!');
}
}
</script>
</body>
</html>
```
阅读全文