這篇文章主要介紹了在JavaScript中處理字符串之fontcolor()方法的使用,是JS入門學習中的基礎知識,需要的朋友可以參考下
此方法會導致就好像它是在一個字符串被顯示在指定的顏色 標記。
語法
?
1 string.fontcolor( color )下面是參數的詳細信息:
color: 字符串表示的顏色為十六進制RGB三元或作為一個字符串
返回值:
字符串表示的顏色為十六進制RGB三元或作為一個字符串
例子:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 <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>這將產生以下結果:
?
1 <font color="red">Hello world</font>注< >:更多精彩教程請關注編程