表单的基本使用
Posted yuanxiangguang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了表单的基本使用相关的知识,希望对你有一定的参考价值。
1 <html lang="en"> 2 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <meta http-equiv="X-UA-Compatible" content="ie=edge"> 7 <title></title> 8 </head> 9 10 <body> 11 12 <!-- autofocus 自动获取焦点 13 required 14 15 --> 16 <form action=""> 17 姓名1:<label><input type="text" required autofocus></label> 姓名1: 18 <label><input type="text" required></label> 19 <input type="submit"> 20 </form> 21 </div> 22 </body> 23 24 </html>
以上是关于表单的基本使用的主要内容,如果未能解决你的问题,请参考以下文章