Form标签
Posted spike-rain
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Form标签相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>标签的使用</title> </head> <html> <form action="#" name="forml" method="post"> 用户名:<input type="text" name="username"/> <br><br> 密 码:<input type="password" name="password"/> <br><br> 性 别: 男<input type="radio" name="sex" value="男"> 女<input type="radio" name="sex" value="女"> <br><br> 邮 箱:<input type="email"/> <br><br> 生 日:<input type="date"/> <br><br> 手机号码:<input type="tel" name="tel" pattern="[1]{1}{358}{1}[0-9]{9}"/> <br><br> <input type="submit" name="submit" value="提交"> </form> </body> </html>
摘自:https://www.cnblogs.com/orange123/p/9657884.html
以上是关于Form标签的主要内容,如果未能解决你的问题,请参考以下文章
[oldboy-django][2深入django]后台生成form标签并设置标签的属性
前端1-----块级标签(独占一行),排版标签(样式排版),其他标签,form表单(input的多种类型)
[oldboy-django][2深入django]学生管理(Form)-- 编辑(设置input标签属性,设置input标签默认显示值,设置input的类型)