【HTML】Form表单中Input的使用

form表单截图样式

image-20210707144322530

form表单中input

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"> <!--字符集 -->
<title>form表单和input</title>
</head>
<body>
<!--表单POST传参 -->
<!--value:默认值 maxlength:最大长度限制 -->
<form method="post" action="" enctype="initial-scale">
账号:<input type="text" name="username" size="30" maxlength="10" value="admin" readonly /><br/>
密码:<input type="password" name="password" size="30" maxlength="10" /><br/>
<!--hidden隐藏域 -->
<input type="hidden" name="token" value="waffawafaw" />
<input type="submit" value="提交"/>
<input type="reset" value="重置">
</form>

<!--文件上传模式 -->
<form method="post" action="" enctype="multipart/form-data">
<input type="file" name="file"/>
<input type="submit" value="提交"/>
</form>

<!--button文件上传模式 -->
<form method="post" action="" enctype="multipart/form-data">
<input type="file" name="file"/>
<input type="button" value="提交" />
</form>

<!--搜索模式 -->
<form method="get" action="" enctype="multipart/form-data">
<input type="text" name="seach"/>
<input type="submit" value="搜索" />
</form>


</body>
</html>

我的个人博客

孤桜懶契:http://gylq.github.io

本文标题:【HTML】Form表单中Input的使用

文章作者:孤桜懶契

发布时间:2021年07月07日 - 14:42:01

最后更新:2022年05月20日 - 11:47:45

原始链接:https://gylq.gitee.io/posts/52.html

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

-------------------本文结束 感谢您的阅读-------------------