我有登录页面,一旦用户首先登录,我想在其中自动填充用户名和密码字段。所以下次如果他回到登录页面,用户名和密码字段需要自动填充,所以他只需点击登录按钮。
我在字段上方启用了自动填充功能,但它在IE或Chrome浏览器中无效。
<input type="text" id="userName" autofocus="autofocus" value="" tabindex="1" autocomplete="on">
<input type="password" name="password" id="password" value="" tabindex="2" maxlength="20" autocomplete="on">
答案 0 :(得分:1)
您还必须将其添加到网页上的<form/>
。
<form autocomplete="on" ..other attributes>