HTML 表单 - 使浏览器能够要求记住文本表单的值?
我有一个标记为“密码”的字段,我希望浏览器询问用户是否要存储该密码。我该怎么做?是否有可使用的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不能显式强制浏览器显示该对话框,但使用正确的元素可以为浏览器提供帮助提示。
因此,请确保您的密码元素具有
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.这应该可以做到:
记下密码框的正确
类型
。This should do it:
Note the proper
type
for the password box.