javascript 提示输入密码(即********)
我正在编写一个书签,我需要能够提示用户输入“密码”。 但是,我不希望它在屏幕上以明文形式显示,因此我无法使用提示。
有没有可以替代prompt()的屏蔽方法?
还有其他建议吗?
I'm writing a bookmarklet and I need to be able to prompt the user for a "password". However, I don't want it to be in clear text on screen, so I cannot use prompt.
Is there a masked alternative to prompt()?
Any other suggestion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以在当前页面上创建一个浮动 div,其中包含一个包含密码字段的表单。
You can create a floating div on the current page, with a form containing a password field.
替代方案:让书签指向特定网页。 从该页面上的用户获取密码,然后继续。
您可能已经注意到,该解决方案根本不使用 JavaScript。 如果您确实坚持使用 javascript,则必须使用 javascript 创建一个新窗口(
window.open
),添加form
和input
元素并将表单的submit
值设置为您的网络应用后端。当然,您可以在当前页面上显示一个对话框,但这会让用户感到非常恼火。 被警告。
杰瑞赫
alternative: let the bookmarlet point to a particular web page. Get the password from the user on that page, and continue.
This solution does not use javascript at all, as you may have noticed. If you really insist on using javascript, you will have to create a new window using javascript (
window.open
), addform
andinput
elements to it, and set the form'ssubmit
value to your web app backend.you can of course, display a dialog box on the current page, but that will be pretty irritating to the user. Be warned.
jrh
没有 - 尝试在如下模式设置上查看 Thickbox :
there isn't one - try looking into Thickbox on a modal setting like this:
简单、快速的答案:不,没有像 window.prompt() 这样的跨浏览器方法来屏蔽用户输入。 然而,您可以研究一些专有的东西。 在 MSIE 中,您有 window.createPopup()、window.showModalDialog() 和 window.showModelessDialog()。 但是我不推荐使用这种方法 =P
如果您对目的地使用 http 身份验证会发生什么? UA 会提示用户 un/pw 吗?
The easy, fast answer: No, there are no cross browser method like window.prompt() that masks the user input. There are however some proprietary stuff you could look into. In MSIE you got window.createPopup(), window.showModalDialog() and window.showModelessDialog(). However I don´t reccomend using this approach =P
What would happen if you used http authentication for your destination? Would the UA prompt the user with a un/pw?