粗体,alert() 中的标题效果?

发布于 2024-08-29 19:41:31 字数 154 浏览 4 评论 0原文

在javascript中,如何使警报粗体n使用h1到h5标题?这是可能的还是简单的警报是选项?

如何在此警报中包含粗体和 h1?



function onlooad()
{
    alert("wssup??");

}

in javascript, how to make alert bold n use h1 to h5 headers? Is this possible or simply plain alert is option?

how to include bold and h1 to this alert?



function onlooad()
{
    alert("wssup??");

}

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

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

发布评论

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

评论(5

黑白记忆 2024-09-05 19:41:31

您不能在alert() 中使用HTML。为此,您需要使用 window.open() 或一些像这样的自定义代码:
http://docs.jquery.com/UI/Dialog

You can not use HTML in alert(). For that you need to use window.open() or some custom code like this:
http://docs.jquery.com/UI/Dialog

爱格式化 2024-09-05 19:41:31

据我所知,这是不可能的。

As far as I know, this is impossible.

软的没边 2024-09-05 19:41:31

您可以使用类似于警报框的自定义元素。看看这个

jQuery Impromptu

You can use custom elements that act like alert boxes. Check this one out

jQuery Impromptu

燕归巢 2024-09-05 19:41:31

Javascript 警报在格式方面受到限制,因为它无法识别 HTML 标记。如果这很重要,请考虑页内替代方案。快速网络搜索发现以下内容:

http://www.jondavis.net/codeprojects/jqalert/

Javascript alert is limited in terms of formatting because it does not recognise HTML markup. If this is important, consider an in-page alternative. A quick web search turned up the following:

http://www.jondavis.net/codeprojects/jqalert/

路弥 2024-09-05 19:41:31

抱歉,在 JavaScript 中,您只能使用纯文本警报。顺便说一下,现在您可以使用 \n 来换行,但alert() 函数只允许纯文本。再次抱歉。

Sorry, but in JavaScript, you can only use plaintext alerts. Now, you can use \n for a newline, by the way, but the alert() function only allows plaintext. Again, sorry.

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