Alert() 提示 - 复选框

发布于 2024-08-05 10:02:50 字数 163 浏览 1 评论 0 原文

通过警报,您可以进行文本输入。我希望你能在其中添加复选框。这可能吗?

http://www.w3schools.com/JS/js_popup.asp

With alerts you can have text inputs. I was hoping you could put check boxes in. Is this possible?

http://www.w3schools.com/JS/js_popup.asp

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

森林迷了鹿 2024-08-12 10:02:50

不,您需要构建一个对话框才能实现此目的。

您可以通过 jQuery 相对轻松地实现此目的,更具体地说是 jQuery UI 插件,允许出现对话框无需太多专业知识即可完成

No, you would need to build out a dialog box in order to achieve this.

You are able to achieve this with relative ease through jQuery and more specifically the jQuery UI plugin, allowing dialog boxes to come up without too much know-how

℡寂寞咖啡 2024-08-12 10:02:50

否。唯一的选项是:

  • alert(显示字符串);
  • 确认(显示字符串并返回是/否|真/假);
  • 提示(显示字符串并返回输入字符串)

您可以使用各种技术。在幕后,它们本质上都做同样的事情 - 在弹出窗口或 iFrame 中显示单独的网页,并禁用对浏览器其余部分的输入访问,直到弹出窗口关闭。这些很容易出错(很难使用+非常烦人),但是如果做得正确,它们将为开发人员提供很多功能 - 因为它是您控制的完整网页,所以您可以在对话框和主浏览器之间传递复杂的 JavaScript 对象窗口,而不必依赖开箱即用的对话框提供的原始交互模式。

No. The only options are:

  • alert (display string);
  • confirm (display string and get yes/no|true/false back);
  • prompt (display string and get input string back)

You can create your own modal dialog using a variety of techniques. Under the hood, they all essentially do the same thing - display a separate web page in a popup window or iFrame and disable input access to the rest of the browser until the popup is closed. These are pretty easy to get wrong (hard to use + very annoying) but when done right they offer the developer a lot of power - since it's a complete web page you control, you can pass complex JavaScript objects between the dialog and the main browser window, instead of having to rely on the primitive interaction modes offered by the out-of-the-box dialogs.

小梨窩很甜 2024-08-12 10:02:50

很确定这是不可能的。但是,您可以用您需要的内容模拟“警报框”。例如,JQuery 就是一个很好的 JavaScript 框架来实现这一点。

Pretty shure it isn't possible. However, you can simulate a "alert box" with the contents you need. JQuery, for example, is a great javascript framework to achieve that.

风轻花落早 2024-08-12 10:02:50

不,但您可以创建一个函数来打开一个包含 html 的警报框,就像在 facebook 上一样。

no, but you can create a function that opens a alert box with html in it, like on facebook.

痴骨ら 2024-08-12 10:02:50

不,但您可以创建带有警报框的函数。

javascript:alert("Hello");
javascript:confirm("Hello");
javascript:prompt("Hello");

是唯一可用的。

No, but you can create functions with alert boxes.

javascript:alert("Hello");
javascript:confirm("Hello");
javascript:prompt("Hello");

are the inly available ones.

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