粗体,alert() 中的标题效果?
在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您不能在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
据我所知,这是不可能的。
As far as I know, this is impossible.
您可以使用类似于警报框的自定义元素。看看这个
jQuery Impromptu
You can use custom elements that act like alert boxes. Check this one out
jQuery Impromptu
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/
抱歉,在 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.