源代码:
下载代码
AI 编程工具
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟教程(runoob.com)</title> </head> <body> <form action="demo-form.php" method="get" autocomplete="on"> First name:<input type="text" name="fname"><br> E-mail: <input type="email" name="email"><br> <input type="submit"> </form> <p>填写并提交表单,然后重载页面,再次填写表格,看看 autocomplete 是如何工作的。</p> <p>然后,尝试设置 autocomplete 为“off”。</p> <p><b>注意:</b>除了 Opera,其他主流浏览器都支持 autocomplete 属性。</p> </body> </html>
运行结果: