1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Document</title> 6 </head> 7 <!-- 新增常用表单控件属性: 8 1、placeholder 设置文本框默认提示文字 9 2、autofocus 自动获得焦点 10 3、autocomplete 联想关键词 --> 11 <body> 12 <input type="text" name="" placeholder="搜索"> 13 <input type="text" name="" autofocus> 14 <input type="text" name="" autocomplete='off'> 15 </body> 16 </html>