Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

String.prototype.fontsize()

非推奨
This feature has been removed from the Web standards. Though some browsers may still support it, it is in the process of being dropped. Do not use it in old or new projects. Pages or Web apps using it may break at any time.

概要

文字列を、<font size=" size "> タグで囲んだときのように、指定されたフォントサイズで表示させます。

構文

str.fontsize(size)

引数

size
1 から 7 までの整数、1 から 7 までの符号付整数を表す文字列。

詳細

文書中で文字列を整形して表示するためには、write 、あるいは、writeln メソッドと共に、 fontsize メソッドを使用してください。サーバーサイド JavaScript では、write 関数を使って、文字列を表示してください。

整数を size に指定するとき、stringName のサイズを 7 つの定義されたサイズのうちの 1 つに設定します。"-2" のような文字列を size に指定したとき、stringName のフォントサイズを BASEFONT タグに 設定されたサイズに基づいて調整します。

例: 文字列のサイズを変化させるための string オブジェクトのメソッドの使用

以下の例は、文字列のサイズを変化させるために string オブジェクトのメソッドを使用しています。:

var worldString = "Hello, world";

document.write( worldString.small() );
document.write( "<P>" + worldString.big() );
document.write( "<P>" + worldString.fontsize(7) );

この例は、以下の HTML と同様の出力を生成します。:

<SMALL>Hello, world</SMALL>
<P><BIG>Hello, world</BIG>
<P><FONT SIZE="7">Hello, world</FONT>

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: teoli, ethertank, Potappo
 最終更新者: teoli,