最新のWeb開発のチュートリアル
 

JavaScript文字列FONTCOLOR()メソッド

JavaScriptの文字列リファレンス JavaScriptの文字列リファレンス

緑色のテキストを表示します。

var str = "Hello World!";
var result = str.fontcolor("green");
»それを自分で試してみてください

詳細以下の例「自分にそれを試してみてください」。


定義と使用法

fontcolor()メソッドは、標準ではない、とすべてのブラウザで期待どおりに動作しない場合があります。

fontcolor()メソッドは、指定された色の文字列を表示するために使用されます。

この方法は、内に埋め込まれた文字列を返す<font>このようなタグを、:

<フォントの色= "colorvalue">文字列</フォント>

<font>タグは、HTML5でサポートされていません。 代わりにCSSを使用してください。


ブラウザのサポート

方法
fontcolor() はい はい はい はい はい

構文

string.fontcolor(" color ")

パラメーター値

Parameter Description
color Required. A color value. The value can be a color name (e.g. red), an RGB value (e.g. rgb(255,0,0)), or a hex number (e.g. #FF0000)e

技術的詳細

戻り値: 埋め込まれた文字列<font>タグ
JavaScriptのバージョン: 1.0

例

その他の例

関連する方法のデモ:

var txt = "Hello World!";

document.write("The original string: " + txt);
document.write("<p>Big: " + txt.big() + "</p>");
document.write("<p>Small: " + txt.small() + "</p>");
document.write("<p>Bold: " + txt.bold() + "</p>");
document.write("<p>Italic: " + txt.italics() + "</p>");
document.write("<p>Fixed: " + txt.fixed() + "</p>");
document.write("<p>Strike: " + txt.strike() + "</p>");
document.write("<p>Fontcolor: " + txt.fontcolor("green") + "</p>");
document.write("<p>Fontsize: " + txt.fontsize(6) + "</p>");
document.write("<p>Subscript: " + txt.sub() + "</p>");
document.write("<p>Superscript: " + txt.sup() + "</p>");
document.write("<p>Link: " + txt.link("http://www.w3ii.com") + "</p>");
document.write("<p>Blink: " + txt.blink() + " (works only in Opera)</p>");
»それを自分で試してみてください

JavaScriptの文字列リファレンス JavaScriptの文字列リファレンス