帮我写一个关于可以借助表单元素的defaultValue属性,邮箱登陆的例子
时间: 2024-10-25 07:05:22 浏览: 17
jquery.defaultValue:通过 jQuery 检索、设置和同步 defaultValue 与 HTML 表单元素的 value 属性
当然,这里是一个简单的HTML表单示例,用于电子邮件登录,其中利用了`<input>`元素的`defaultValue`属性:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Email Login Form</title>
</head>
<body>
<h2>Login with Email</h2>
<form id="loginForm" action="/submit-email" method="post">
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="example@example.com" required pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$" defaultValue="Enter your email here">
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="Your password" required>
<button type="submit">Login</button>
</form>
<p class="help-text">Remember, you can use the <em>defaultValue</em> attribute to pre-fill the input field:</p>
<script>
document.getElementById('email').focus(); // 如果希望默认聚焦到邮箱输入框
</script>
</body>
</html>
```
在这个例子中,用户需要输入他们的电子邮件地址和密码。`defaultValue`属性设置为"Enter your email here",表示当页面加载时,邮箱输入字段会自动填充这一文本。用户可以在输入框中修改。
阅读全文