HTML 表单 - 使浏览器能够要求记住文本表单的值?

发布于 2024-11-06 19:36:14 字数 491 浏览 0 评论 0原文

我有一个标记为“密码”的字段,我希望浏览器询问用户是否要存储该密码。我该怎么做?是否有可使用的 HTML 属性?

例如,表单的 HTML 为:

<form action="" method="POST" name="form">
Enter password:
<input type="text" name="password" /><br />
A checkbox
<input type="checkbox" name="some_checkbox" value="Yes" /><br />
A textarea<br />
<textarea name="input_text" cols=40 rows=10></textarea><br />
<input type=submit value="Submit">

我希望浏览器提示存储“密码”输入。

I have a field that I've labeled 'password', and I'd like the browser to ask the user whether they want to store that password. How do I do this? Is there an HTML attribute to use?

For instance the HTML for the form would be:

<form action="" method="POST" name="form">
Enter password:
<input type="text" name="password" /><br />
A checkbox
<input type="checkbox" name="some_checkbox" value="Yes" /><br />
A textarea<br />
<textarea name="input_text" cols=40 rows=10></textarea><br />
<input type=submit value="Submit">

And I'd like the browser to prompt for storing the 'password' input.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

东京女 2024-11-13 19:36:14

您不能显式强制浏览器显示该对话框,但使用正确的元素可以为浏览器提供帮助提示。

因此,请确保您的密码元素具有 type="password" 属性。

You can't explicitly force the browser to show that dialog, but using the correct elements gives the browser a helping hint.

So make sure your password element has the type="password" attribute.

淡莣 2024-11-13 19:36:14

这应该可以做到:

<input type="password" name="password" />

记下密码框的正确类型

This should do it:

<input type="password" name="password" />

Note the proper type for the password box.

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