我有一个登录表格如下:
<form name="checkform" action="example.php">
<input type="text" id="c_email" name="c_email" placeholder="EMail here">
<input type="text" id="c_epass" name="c_epass" placeholder="Password here">
<input type="submit" id="c_sub">
</form>
现在当我使用此表单登录然后浏览器要求保存密码。我点击了是,这些都保存在浏览器中。但我不希望每次打开页面登录时自动填充这些详细信息。
如何限制不自动填充这些详细信息?我希望如果用户填写电子邮件ID,则只填充已保存的密码,否则这些字段应保持为空。
答案 0 :(得分:1)
<form name="checkform" action="example.php" autocomplete='off'>
<input type="text" id="c_email" name="c_email" placeholder="EMail here">
<input type="text" id="c_epass" name="c_epass" placeholder="Password here">
<input type="submit" id="c_sub">
</form>
答案 1 :(得分:0)
在输入框中使用autocomplete="off"
:
<form name="checkform" action="example.php" autocomplete="off">
<input type="text" id="c_email" name="c_email" placeholder="EMail here">
<input type="text" id="c_epass" name="c_epass" placeholder="Password here">
<input type="submit" id="c_sub">
</form>