如何设计警报框中的文本样式?
可能的重复:
如何在警报或确认框中显示粗体文本?< /a>
在下面的示例中,我需要为单词警报添加样式,因此它显示:
你好!我是一个警报框!
这是我的代码:
<html><head>
<script type="text/javascript">
function show_alert()
{
alert("Hello! I am an alert box!");
}
</script></head><body>
<input type="button" onclick="show_alert()" value="Show alert box" />
</body></html>
Possible Duplicate:
How to get Text BOLD in Alert or Confirm box?
In the following example I need to add styles to the word alert, so it says:
Hello! I am an alert box!
Here is my code:
<html><head>
<script type="text/javascript">
function show_alert()
{
alert("Hello! I am an alert box!");
}
</script></head><body>
<input type="button" onclick="show_alert()" value="Show alert box" />
</body></html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
基本上是不可能的。您无权从浏览器内部访问操作系统级别。
您所能做的就是使用自定义模式弹出窗口。您可以在此处找到大量随时可用的模式弹出插件 或此处
window.alert
接受一个string
作为参数。您无法设置MDN 中的
string
样式:Basically it's impossible. You don't have access to OS level from inside the browser.
All you can do is using a custom modal popup. You can find tons of ready to use modal popup plug ins here or here
window.alert
accept anstring
as it's argument. You can't style anstring
From MDN:
警报框是一个浏览器窗口和操作系统的一部分,而不是 DOM,所以不幸的是你可以不对其应用样式。
最简单的解决方案是使用许多现有模式对话框之一您选择的对话框所需的 Javascript 库。
另一种方法是使用 Javascript 或自定义库(例如 moo 工具 或 jQuery)用于动画。
The alert box is a browser window and part of the OS, not the DOM, so unfortunately you can't apply styles to it.
The easiest solution is to use one of many existing modal dialogs along with the required Javascript library of the dialog you choose.
The alternative is to mimic an alert box by overlaying a specialized
<div class="yourAlertClass">
on your page, using Javascript or a custom library (like moo tools or jQuery) for the animations.你不能。
我认为您正在考虑的是模式弹出窗口。看看 JQuery UI,但还有很多其他库可以使用。
You can't.
I think what you are thinking of is a modal popup. Have a look in JQuery UI, but there are plenty of other libraries you can use.
警报,确认 和提示 无法设置样式。它们因浏览器而异。
要制作风格的“警报框”(对话框),您应该使用UI库 - jQuery UI 示例
Alert, confirm and prompt can not be styled. They vary from browser to browser.
To make a styled "alert box" ( dialog ) you should use an UI library - jQuery UI for example