【HTML】Form表单中Input的使用 2021-07-07 | HTML | | | 273 form表单截图样式 form表单中input123456789101112131415161718192021222324252627282930313233343536373839<!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 国际 转载请保留原文链接及作者。 -------------------本文结束 感谢您的阅读------------------- 坚持原创技术分享,感谢您的支持和鼓励! 打赏 微信支付 支付宝