使用js 3.点击去登录 页面弹框显示 ‘请注册完成后登录’ 4.在输入手机号后 对手机号进行验证(长度为11位 且首位为1) 5.手机号输入 使用键盘事件验证 如果手机号码为正确的 则手机号为绿色 6.点击获取验证码 实现10s倒计时 7.倒计时结束后 “获取验证码” 处显示 “再次获取验证码” 8.倒计时结束后 短信验证码处 回显四位随机验证码 9.密码的样式为(*****) 10.点击眼睛 可以切换密码的状态
时间: 2024-04-20 19:25:24 浏览: 80
以下是使用 JavaScript 实现上述功能的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<style>
.hidden {
display: none;
}
</style>
</head>
<body>
<form>
<label for="phone">手机号码:</label>
<input type="text" id="phone" onkeyup="validatePhone()" />
<button type="button" onclick="showAlert()">去登录</button>
<p id="phoneError" class="hidden">手机号码不正确</p>
<label for="code">短信验证码:</label>
<input type="text" id="code" />
<button type="button" onclick="countdown()">获取验证码</button>
<p id="countdown">获取验证码</p>
<label for="password">密码:</label>
<input type="password" id="password" />
<button type="button" onclick="togglePasswordVisibility()">眼睛</button>
<button type="submit">登录</button>
</form>
<script>
var countdownTime = 10;
var countdownTimer;
function showAlert() {
alert('请注册完成后登录');
}
function validatePhone() {
var phoneInput = document.getElementById('phone');
var phoneError = document.getElementById('phoneError');
if (phoneInput.value.length === 11 && phoneInput.value.charAt(0) === '1') {
phoneError.classList.add('hidden');
phoneInput.style.color = 'green';
} else {
phoneError.classList.remove('hidden');
phoneInput.style.color = 'black';
}
}
function countdown() {
var countdownElement = document.getElementById('countdown');
var codeInput = document.getElementById('code');
countdownElement.innerHTML = countdownTime + 's';
countdownElement.setAttribute('disabled', 'true');
codeInput.value = generateRandomCode(4);
countdownTimer = setInterval(function() {
countdownTime -= 1;
countdownElement.innerHTML = countdownTime + 's';
if (countdownTime === 0) {
clearInterval(countdownTimer);
countdownElement.innerHTML = '再次获取验证码';
countdownElement.removeAttribute('disabled');
}
}, 1000);
}
function generateRandomCode(length) {
var code = '';
var characters = '0123456789';
for (var i = 0; i < length; i++) {
code += characters.charAt(Math.floor(Math.random() * characters.length));
}
return code;
}
function togglePasswordVisibility() {
var passwordInput = document.getElementById('password');
var passwordButton = document.querySelector('button[onclick="togglePasswordVisibility()"]');
if (passwordInput.type === 'password') {
passwordInput.type = 'text';
passwordButton.textContent = '隐藏';
} else {
passwordInput.type = 'password';
passwordButton.textContent = '显示';
}
}
</script>
</body>
</html>
```
这段代码会创建一个表单,其中包含手机号码输入框、去登录按钮、短信验证码输入框、获取验证码按钮、密码输入框和登录按钮。它使用了一些 JavaScript 函数来实现所需的功能。
请将这段代码保存为 `.html` 文件,并在浏览器中打开以查看效果。注意,这只是一个示例代码,可能需要根据实际需求进行修改和调整。
阅读全文