独自のオブジェクトを作成する

動作ブラウザ
Internet Explorer Netscape Navigator
4.0x 4.5 5.0x 5.5 6.0 4.x 6.0
Windows -
Macintosh - -
UNIX - - - - -

解  説  独自のオブジェクトを作成するには、オブジェクトのひな形をfunction命令を使って定義します。「this.プロパティ名 = 値」でオブジェクトのプロパティ名、「this.メソッド名 = 実行関数名」でオブジェクトのメソッドを定義します。
コード <html> <head> <title>独自のオブジェクトを作成する</title> <script language="JavaScript"><!-- function myObj(objName) { this.name = objName; this.wrt = mWrt; } function mWrt(n,msg) { for (i=0; i<n; i++) document.write(msg); } // --></script> </head> <body> 独自のオブジェクトを作成する<br> <script language="JavaScript"><!-- customObj = new myObj("TEST"); document.write("object name = "+customObj.name+"<hr>"); customObj.wrt(10,"-"); // --></script> </body> </html>

■サンプルスクリプトを実行する >>実行
■各ブラウザでの動作結果を見る >>View!