总算学完啦,接下来要开始css的学习啦
<!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>
<!--
所有需要提交的信息写在form中,在其下有
method 标签 get post两个值,post代表输入信息不可见
readonly="readonly" 只读,将表单项设置为只读,但是数据会提交
表单的其他属性
autocomplete="off" 关闭自动补全,默认打开或者on, 设置在form下,则整个表单关闭自动补全,也可以设置某一个单个项
disabled 将表单项设置为禁用状态数据不会提交
autofocus="autofocus" 设置表单自动获取焦点
-->
<form action="12音视频标签.html">
用户名:
<input type="text" name="username" value="amind" autocomplete="off" >
<br><br>
颜色:
<input type="color" name="color">
<br><br>
邮箱:
<input type="email" name="email">
<br><br>
<input type="submit">
<br><br>
文件上传:
<input type="file">
<br><br>
<!-- 隐藏域 -->
<input type="hidden" name="token">
</form>
</body>
</html>