编辑你的代码:
<!DOCTYPE html> <html> <body> <form action="/html5/tryit/demo_form" autocomplete="on"> First name:<input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br> E-mail: <input type="email" name="femail" autocomplete="off"><br> <input type="submit"> </form> <p>填写并提交表单, 重载这个页面查看自动完成属性如何工作.</p> <p>注意:表单时自动完成属性, 但是“email”域是关闭的.</p> </body> </html>
查看结果:
phpxuexi.net
- 亲自试一试