1、描述
该方法使字符串以指定的颜色显示,就像它在<font color = "color">
标记中一样。
2、语法
它的语法如下:
string.fontcolor(color)
3、参数
color:表示颜色为十六进制RGB三元组或字符串字面量的字符串。
4、返回值
使用 <font color="color">
标记返回字符串。
5、使用示例
<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>
6、输出
<font color = "red">Hello world</font>