非推奨
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.
概要
文字列を、BLINK
タグで囲んだときのように、点滅させます。
構文
String.blink()
詳細
文書中で文字列を整形して表示するためには、write
、あるいは、writeln
メソッドと共に、 blink
メソッドを使用してください。サーバーサイド JavaScript では、write
関数を使って、文字列を表示してください。
例
例: 文字列の整形を変化させるための string
オブジェクトのメソッドの使用
以下の例は、文字列の整形を変化させるために string
オブジェクトのメソッドを使用します。
var worldString="Hello, world"; document.write( worldString.blink() ); document.write( "<P>" + worldString.bold() ); document.write( "<P>" + worldString.italics() ); document.write( "<P>" + worldString.strike() );
この例は、以下の HTML と同様の出力を生成します。:
<BLINK>Hello, world</BLINK> <P><B>Hello, world</B> <P><I>Hello, world</I> <P><STRIKE>Hello, world</STRIKE>