文字列に「タグ付け」する書式
・string.bold() - 太字(<b>)
・string.italics() - 斜体(<i>)
・string.fixed() - 固定幅フォント(<tt>)
・string.big() - 大きなフォント(<big>)
・string.small() - 小さなフォント(<small>)
・string.blink() - ブリンク(<blink>)
・string.strike() - 打ち消し線(<strike>)
・string.sup() - 上付き(<sup>)
・string.sub() - 下付き(<sub>)
・string.fontcolor(color) - 赤い文字(<font color=color>)
・string.fontsize(size) - フォントサイズ7の文字(<font size=size>)
・string.anchor(name) - アンカー(<a name=name>)
・string.link(name) - リンク(<a href=name>)
それぞれ、「string」で指定した文字列を
・<b>
・<i>
・<tt>
・<big>
・<small>
・<blink>
・<strike>
・<sup>
・<sub>
・<font color=color>
・<font size=size>
・<a name=name>
・<a href=name>
の「開始タグ」「終了タグ」で囲んだ文字列を返します。
サンプルコード
・document.write("太字".bold());
・document.write("斜体".italics());
・document.write("固定幅フォント".fixed());
・document.write("大きなフォント".big());
・document.write("小さなフォント".small());
・document.write("ブリンク".blink());
・document.write("打ち消し線".strike());
・document.write("上付き".sup());
・document.write("下付き".sub());
・document.write("赤い文字".fontcolor("red"));
・document.write("フォントサイズ7の文字".fontsize(7));
・document.write("アンカー".anchor("xxx"));
・document.write("リンク".link("index.html"));
Back