javascript 提示输入密码(即********)

发布于 2024-07-25 02:16:27 字数 117 浏览 6 评论 0原文

我正在编写一个书签,我需要能够提示用户输入“密码”。 但是,我不希望它在屏幕上以明文形式显示,因此我无法使用提示。

有没有可以替代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 技术交流群。

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

发布评论

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

评论(4

无戏配角 2024-08-01 02:16:27

您可以在当前页面上创建一个浮动 div,其中包含一个包含密码字段的表单。

You can create a floating div on the current page, with a form containing a password field.

ζ澈沫 2024-08-01 02:16:27

替代方案:让书签指向特定网页。 从该页面上的用户获取密码,然后继续。

您可能已经注意到,该解决方案根本不使用 JavaScript。 如果您确实坚持使用 javascript,则必须使用 javascript 创建一个新窗口(window.open),添加 forminput 元素并将表单的 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), add form and input elements to it, and set the form's submit 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

会傲 2024-08-01 02:16:27

没有 - 尝试在如下模式设置上查看 Thickbox

<a href="iframeModal.html?placeValuesBeforeTB_=savedValues&TB_iframe=true&height=200&width=300&modal=true" title="add a caption to title attribute / or leave blank" class="thickbox">Open iFrame Modal</a>

there isn't one - try looking into Thickbox on a modal setting like this:

<a href="iframeModal.html?placeValuesBeforeTB_=savedValues&TB_iframe=true&height=200&width=300&modal=true" title="add a caption to title attribute / or leave blank" class="thickbox">Open iFrame Modal</a>
想你只要分分秒秒 2024-08-01 02:16:27

简单、快速的答案:不,没有像 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?

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