如何设计警报框中的文本样式?

发布于 2024-12-11 18:57:23 字数 746 浏览 0 评论 0原文

可能的重复:
如何在警报或确认框中显示粗体文本?< /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 技术交流群。

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

发布评论

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

评论(4

灯角 2024-12-18 18:57:23

基本上是不可能的。您无权从浏览器内部访问操作系统级别。

您所能做的就是使用自定义模式弹出窗口。您可以在此处找到大量随时可用的模式弹出插件此处

window.alert 接受一个string 作为参数。您无法设置

MDN 中的 string 样式:

message 是要在警报对话框中显示的文本字符串
或者,转换为字符串的对象
显示。

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 an string as it's argument. You can't style an string

From MDN:

message is a string of text you want to display in the alert dialog,
or, alternatively, an object that is converted into a string and
displayed.

去了角落 2024-12-18 18:57:23

警报框是一个浏览器窗口和操作系统的一部分,而不是 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.

悸初 2024-12-18 18:57:23

你不能。

我认为您正在考虑的是模式弹出窗口。看看 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.

野生奥特曼 2024-12-18 18:57:23

警报确认提示 无法设置样式。它们因浏览器而异

要制作风格的“警报框”(对话框),您应该使用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

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