此方法會導致就好像它是在一個字串被顯示在指定的顏色 <font color="color">標記。
string.fontcolor( color )
下面是引數的詳細資訊:
color: 字串表示的顏色為十六進位制RGB三元或作為一個字串
字串表示的顏色為十六進位制RGB三元或作為一個字串
<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>