表单字段数据历史记录不保留
我的页面上有一个表单,通过 https:// 显示,如下所示:
<form id="memberslogin_form" name="memberslogin_form">
<fieldset>
<legend>Login</legend>
<div>
<label for="membershipId">Membership number</label>
<input type="text" class="field" name="membershipId" id="membershipId""/>
</div>
<div>
<label for="memberPassword">Password</label>
<input size="18" type="password" class="field" maxlength="50" name="memberPassword" id="memberPassword" />
</div>
<div id="button_login">
<input type="button" value="Login" class="button" id="signin" name="signin"/>
</div>
</fieldset>
</form>
该表单的名称是唯一的,输入也是如此。
但是,成功登录不会导致“membershipId”条目在输入最近条目\历史记录中列出。 FF3.6 和 IE6+ 中都会出现这种情况。
我相信存储字段历史记录的能力是通过其设置基于浏览器的,但我无法通过 https:// 表单保留输入历史记录?
I have a form on a page that is shown via https:// as follows:
<form id="memberslogin_form" name="memberslogin_form">
<fieldset>
<legend>Login</legend>
<div>
<label for="membershipId">Membership number</label>
<input type="text" class="field" name="membershipId" id="membershipId""/>
</div>
<div>
<label for="memberPassword">Password</label>
<input size="18" type="password" class="field" maxlength="50" name="memberPassword" id="memberPassword" />
</div>
<div id="button_login">
<input type="button" value="Login" class="button" id="signin" name="signin"/>
</div>
</fieldset>
</form>
The form is uniquely named, as are the inputs.
However, successful logins do not cause the "membershipId" entries to be listed in the input recent entries \ history. This occurs in both FF3.6 and IE6+.
I believe the ability to store field history is browser-based via it's settings, but I cannot retain the input history over https:// forms?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是这里的拼写错误,还是实际页面中的拼写错误:
请参阅额外的
"
。我不太了解 FF 中保存表单值的机制,但一直以来,我的表单输入是即使在
https
站点中也可以保存。也许您可以尝试 lastpass 来保存表单。安全输入供以后使用以及密码。
Is this a typo in here only, or in actual page:
See the extra
"
.I don't know much about the mechanism of saving form value in FF, but all this time, my form input is saved even if it in
https
site.Maybe you can try lastpass that can save a form input for later usage as well as the password securely.