提问人:Max 提问时间:11/27/2022 更新时间:11/29/2022 访问量:551
接受电子邮件或用户名的输入使用哪种输入类型?
What input type is used for an input that accept email or username?
答:
1赞
Dmitsos
11/27/2022
#1
就像上面的那个人说的,你可以只使用普通的输入标签 你必须告诉你用于后端的语言,用户可以输入用户名或电子邮件来登录网站,它应该看起来像这样:
<!DOCTYPE HTML>
<html>
<body>
<input type="text" name=mailuid placeholder="Username/email">
</body>
<html>
1赞
AWM
11/29/2022
#2
您的问题已经在上面得到解答。但在这里我想补充一点,如果你想为特定的电子邮件做一个标签,你也可以在标签中提供一个模式。喜欢这个:input
<!DOCTYPE HTML>
<html>
<body>
<input type="text" id="email" placeholder="Email using @example.com" pattern=".+@example\.com" required>
</body>
<html>
我希望这能作为另一个参考
上一个:Kotlin 中预先格式化的输入
下一个:如何按(字符串)名称选择变量?
评论
input[type=email]