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.sub()

非推奨
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.

概要

文字列を、<sub> タグで囲んだときのように、下付文字 (subscript) として表示させます。

構文

str.sub()

詳細

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

例: 文字列を整形するための subsup メソッドの使用

以下の例は、文字列を整形するために、subsup メソッドを使用しています。

var superText = "上付文字";
var subText = "下付文字";

document.write( "これは" + superText.sup() + "の見え方を示しています。" );
document.write( "<p>これは" + subText.sub() + "の見え方を示しています。");

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

これは<sup>上付文字</sup>の見え方を示しています。
<p>これは<sub>下付文字</sub>の見え方を示しています。

関連情報

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

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