标签:pre form 用户 手机号 mail doc input date html
<!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
标签:pre form 用户 手机号 mail doc input date html
原文地址:https://www.cnblogs.com/spike-rain/p/10189786.html