Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/gwt/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
gwt登录自动填充赢得';行不通_Gwt_Login_Autocomplete_Autofill - Fatal编程技术网

gwt登录自动填充赢得';行不通

gwt登录自动填充赢得';行不通,gwt,login,autocomplete,autofill,Gwt,Login,Autocomplete,Autofill,我有一个gwt应用程序,它有一个登录页面,以便在以下url中实现自动填充功能I: 但是,用户名字段可以自动填充,但密码字段不能。我甚至检查了firefox的密码设置,可以看到我的用户名/密码正确保存在firefox中,为什么密码字段不会自动填充 以下是我的登录表单的html代码: <div id="loginDiv" style="display:none"> <form method="post" action="login" id="loginForm"> <

我有一个gwt应用程序,它有一个登录页面,以便在以下url中实现自动填充功能I: 但是,用户名字段可以自动填充,但密码字段不能。我甚至检查了firefox的密码设置,可以看到我的用户名/密码正确保存在firefox中,为什么密码字段不会自动填充

以下是我的登录表单的html代码:

<div id="loginDiv" style="display:none">
<form method="post" action="login" id="loginForm">

<table id="loginTable" valign="center">

  <tr>
  <td id="loginLabel">Username:</td>
  <td><input id="loginUsername" name="username" AUTOCOMPLETE="on"></td>
  </tr>
  <tr>
  <td id="loginLabel">Password:</td>
  <td><input id="loginPassword" name="passwd" type="password" AUTOCOMPLETE="on"></td>
  </tr>

  <tr>
  <td><button id="loginSubmit" type="submit">Login</button></td>
  <td><input id="loginRememberMe" name="rm" type="checkbox">Remember Me</checkbox></td> 
  </tr>

</table></form>
</div>

用户名:
密码:
登录
记得我吗