使用javascript更改警报消息文本颜色

时间:2012-11-19 10:25:52

标签: javascript

使用以下脚本更改脚本的颜色,但显示'font color =“red”> Hello world / font>像这样。有任何可能的方法来改变警报文字的颜色..

<html>
<head>
<title>JavaScript String fontcolor() Method</title>
</head>
<body>
<script type="text/javascript">

var str = new String("Hello world");

alert(str.fontcolor( "red" ));

</script>
</body>
</html>

4 个答案:

答案 0 :(得分:6)

没有。 alert()接受一个字符串并使用本机窗口小部件呈现它。没有规定它的风格。

您最接近的方法是通过DOM修改HTML文档以显示消息,而不是使用alert()

答案 1 :(得分:6)

没有。 alert()接受一个字符串并使用本机窗口小部件呈现它。没有规定它的风格。

答案 2 :(得分:4)

您可以使用JQuery解决问题

<html>
<head>
<meta charset="utf-8" />
<title>JavaScript String fontcolor() Method</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-                  ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
 $( "#dialog-message" ).dialog({
  modal: true,
  buttons: {
  Ok: function() {
   $( this ).dialog( "close" );
   } 
}});
});
</script>
</head>

<body>
 <div id="dialog-message" title="My Dialog Alternative">
 <p style='color:red'> Hello world </p>
 </div>
</body>
 </html>

答案 3 :(得分:2)

希望这有帮助:

android:fadeScrollbars='false'
android:nestedScrollbarsEnabled='true'

概念取自:http://www.developphp.com/video/JavaScript/Custom-Alert-Box-Programming-Tutorial