以下のスクリプトを使用してスクリプトの色を変更していますが、「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>