如何在 Web 应用程序中更改密码字符样式
每个文本框中默认的密码将在文本框中显示为 •••••••••
,而不是,我想将其更改为 ***** ********
在 Web 应用程序中。 任何人都可以建议我如何更改密码字符的样式。
The Password in default in every text box will appear like •••••••••
in the Textbox instead of, I want to make it to be changed like *************
in a Web Application.
Can any one suggest me how to change the Style of the Password Char.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
控件的呈现由浏览器完成。没有一种通用的方法可以强制执行所有浏览器。值得注意的是,WebKit 具有用于设置某些控件的样式以及它们向用户显示的方式的选项,但这些选项都以
-webkit
为前缀,这已经表明它们在哪里不起作用。Rendering of controls is done by the browser. There is no general way of mandating this that works across all browsers. Notably WebKit has options for styling certain controls and how they appear to the user, but those are prefixed with
-webkit
which tells already where they won't work.抱歉,这在 HTML 中不可用。每个浏览器都可以按照自己的意愿自由实现。
Sorry, but this is not available in HTML. Each browser is free to implement as it wants.
您可以制作一个 JavaScript 解决方案,覆盖一个新的输入,并用您已输入的 # 个字符填充该输入。
You could make a javascript solution that overlays a new input which you fill with the amount of # characters you already typed.