扫码一下
查看教程更方便
fontcolor() 方法用于按照指定的颜色来显示字符串。
该方法返回加了 <font> 标签的字符串, 如下所示:
<font color="colorvalue">string</font>
语法如下:
string.fontcolor(color)
color - 必需。为字符串规定 font-color。该值必须是颜色名(red)、RGB 值(rgb(255,0,0))或者十六进制数(#FF0000)。
返回带有 <font color="color"> 标签的字符串。
所有主流浏览器都支持 fontcolor() 方法。
<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>
输出结果:
<font color = "red">Hello world</font>