<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>表单其他控件</title>
</head>
<body>
<!--
表单的其他属性
autocomplete="off"关闭自动补全
readonly="readonly"将表单设置为只读,但是数据会提交
disabled="disabled"将表单设置为禁用,数据不会提交
-->
<form action="pages/2.html">
用户名:
<input type="text"name="username"value="admin"autocomplete="off"autofocus="autofocus">
<br><br>
颜色:
<input type="color"name="color">
<br><br>
邮箱:
<input type="email"name="email">
<br><br>
文件上传:
<input type="file">
<br><br>
<!--隐藏域-->
<input type="hidden"name="token">
<input type="submit">
</form>
</body>
</html>
版权属于:
yu
作品采用:
《
署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
》许可协议授权
评论 (0)