非推奨
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.
概要
文字列を、 BIG
タグ で囲んだときと同様に、大きなフォントで表示させます。
注意: HTML5 に於いては既に
<big>
要素は廃止されています。構文
string.big()
引数
無し
説明
文書中で文字列を整形して表示するためには、write
、あるいは、writeln
メソッドと共に、 big
メソッドを使用してください。サーバーサイド JavaScript では、write
関数を使って、文字列を表示してください。
例
例: big
メソッドの使用
以下の例では、文字の大きさを変化させるために 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><FONTSIZE=7>Hello, world</FONTSIZE>