内容目录
fontcolor()
函数返回以当前字符串为文本内容、以指定字符串为color
属性值的<font>标签字符串。
该函数属于String
对象,所有主流浏览器均支持该函数。
语法
stringObject.fontcolor( colorValue )
参数
参数 | 描述 |
---|---|
colorValue | String类型指定的颜色值,用做<font>标签的color属性值。 |
返回值
fontcolor()
方法的返回值为String类型,其返回值形如:
<font color="colorValue
">stringObject
</font>
示例&说明
var str = "Google搜索引擎";
document.writeln( str.fontcolor("red") ); // <font color="red">Google搜索引擎</font>
str = "Code Player";
document.writeln( str.fontcolor("#fcf") ); // <font color="#fcf">Code Player</font>
0 条评论
撰写评论