表单字段数据历史记录不保留

发布于 2024-08-21 11:36:24 字数 885 浏览 3 评论 0原文

我的页面上有一个表单,通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

隐诗 2024-08-28 11:36:24

这是这里的拼写错误,还是实际页面中的拼写错误:

<input type="text" class="field" name="membershipId" id="membershipId""/>

请参阅额外的 "

我不太了解 FF 中保存表单值的机制,但一直以来,我的表单输入是即使在 https 站点中也可以保存。

也许您可以尝试 lastpass 来保存表单。安全输入供以后使用以及密码。

Is this a typo in here only, or in actual page:

<input type="text" class="field" name="membershipId" id="membershipId""/>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文