帮我仿写一个京东商城的登录页面的html、css、js
时间: 2024-09-21 17:01:26 浏览: 43
仿京东登录和注册页面
5星 · 资源好评率100%
好的,这是一个简单的京东商城登录页面的HTML、CSS和JavaScript示例。请注意,这只是一个基础模板,并未包含完整的交互功能,实际应用中可能需要连接到服务器验证用户信息。
**HTML (login.html)**:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<link rel="stylesheet" href="styles.css">
<title>京东商城 - 登录</title>
</head>
<body>
<div class="login-container">
<h2>京东商城登录</h2>
<form id="loginForm">
<input type="text" placeholder="用户名" id="username" required>
<input type="password" placeholder="密码" id="password" required>
<button type="submit">登录</button>
<a href="#" onclick="showForgotPassword()">忘记密码?</a>
</form>
<p id="errorMessage" style="display:none; color:red;"></p>
</div>
<script src="scripts.js"></script>
</body>
</html>
```
**CSS (styles.css)**:
```css
.login-container {
width: 400px;
margin: auto;
padding: 20px;
border: 1px solid #ccc;
}
input {
display: block;
margin-bottom: 10px;
padding: 8px;
font-size: 16px;
}
button {
background-color: #00bfff;
color: white;
border: none;
cursor: pointer;
padding: 10px 20px;
}
```
**JavaScript (scripts.js)**:
```javascript
function showForgotPassword() {
document.getElementById('errorMessage').style.display = 'none';
}
document.getElementById('loginForm').addEventListener('submit', function(e) {
e.preventDefault();
const username = document.getElementById('username').value;
const password = document.getElementById('password').value;
if (validateUsernameAndPassword(username, password)) {
// 这里只是模拟登录,真实场景下应向服务器发送请求
console.log('Login successful with username: ' + username);
} else {
showError('用户名或密码错误');
}
});
function validateUsernameAndPassword(username, password) {
// 实现简单的校验,这里仅作为示例,实际应有更复杂的身份验证逻辑
return username === 'admin' && password === '123456';
}
function showError(message) {
document.getElementById('errorMessage').textContent = message;
document.getElementById('errorMessage').style.display = 'block';
}
```
阅读全文