自动填充不能在Firefox和IE中工作

时间:2014-09-29 09:48:15

标签: java html5 internet-explorer firefox autofill

我希望用户已经登录网站时自动填充用户名和密码,我已通过以下代码启用自动填写功能。当用户下次访问时,我希望用户名和密码字段都应该预先填充。

<form autocomplete="on">

<input type="text" name="userName" id="userName" autocomplete="on">
<input type="text"  name="paasword" id="password" autocomplete="on">

上面的代码在chrome中工作得很好,但这在firefox中没有用,即。

注意 - 我正在使用ajax调用,登录成功后我会window.location.replace(redirect)

1 个答案:

答案 0 :(得分:0)

试试这种方式

<form action="" autocomplete="on">
  First name:<input type="text" name="fname"><br>
  Last name: <input type="text" name="lname"><br>

  <input type="submit">
</form>

我在IE和Mozilla中测试了它works

IE 10.0.92版

Mozilla firefox版本32.0.1