我的login.jsp页面包含两个输入标签。一个是文本输入,另一个是密码。 在此页面中,我启用了自动填充功能。
<form name="login" autocomplete="on">
用户登录浏览器自动启用自动完成选项。 我的问题是在注销用户转到注册页面后,电子邮件和密码框自动填写。 但是这个页面我没有启用自动完成功能
<form name="signup" autocomplete="off">
如何解决这个问题。
注册页面代码:
<form action="/signup" method="post" name="signupform" autocomplete="off">
<input style="width: 80%" type="text" tabindex="2"placeholder="Enter email" name="email" id="email" autocomplete="off">
<input style="width: 80%;" type="password" tabindex="3"placeholder="8 character password" name="password" autocomplete="off" id="password" maxlength="20">