HTML/CSS: How to make quot;passwordquot; input show the password?(HTML/CSS:如何制作“密码输入显示密码?)
问题描述
如何使密码字段中的值可见?因此,在字段中输入密码时,它不会显示黑点,而是显示您输入的实际值.
How can you make the value in the password field visible? So, when typing your password in the field, it will not show the black dots, but the actual value that you are typing.
谢谢!
好的,那么一个更好的问题可能是:如何强制浏览器记住此密码"字段中的值并将其视为密码?
edit: Ok, so then a better question might be: How can I force the browser to remember the value in this 'password' field and treat it as a password?
推荐答案
不要让它成为密码字段,让它成为一个普通的文本框.
Don't make it a password field, make it a normal text box.
如果需要动态切换字段类型,codingforums.com上有一个HOWOTO over,还有几个 SO 问题:
If you need to switch the field type dynamically, there is a HOWOTO over on codingforums.com, and also several SO questions:
- Javascript IE6/7/8 更改输入类型李>
- 更改 <input>用 JavaScript 输入 IE
- Javascript 动态更改输入类型在 IE8 上不起作用一个>
- 使用 jQuery 更改输入字段的类型
为确保浏览器保持正常行为(保存/不保存密码),您可以在提交时将其转换回密码字段.
To ensure that browsers keep their normal behavior (saving/not saving passwords) you can convert this back to a password field upon submit.
这篇关于HTML/CSS:如何制作“密码"输入显示密码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:HTML/CSS:如何制作“密码"输入显示密码?
基础教程推荐
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01