Skip to content

Files

Latest commit

author
shao80s
Jan 8, 2015
0bfec93 · Jan 8, 2015

History

History
21 lines (15 loc) · 365 Bytes

form_email.md

File metadata and controls

21 lines (15 loc) · 365 Bytes

input输入类型:email

email 类型用于应该包含 e-mail 地址的输入域。

在提交表单时,会自动验证 email 域的值。

例:

<!DOCTYPE HTML>
<html>
<body>

<form action="/example/html5/demo_form.asp" method="get">
E-mail: <input type="email" name="user_email" /><br />
<input type="submit" />
</form>

</body>
</html>