首页
HTML
HTML 表单属性
试用:autocomplete 属性
运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The form autocomplete attribute</h1> <p>Fill in and submit the form, then reload the page, start to fill in the form again - and see how autocomplete works.</p> <p>Then, try to set autocomplete to "off".</p> <form action="/action_page.php" autocomplete="on"> <label for="fname">First name:</label> <input type="text" id="fname" name="fname"><br><br> <label for="email">Email:</label> <input type="text" id="email" name="email"><br><br> <input type="submit"> </form> </body> </html>