Javaコンソールに文字を出力する(Netscape)

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

解  説  Javaコンソールに文字などを出力するにはjava.lang.System.out.println(出力データ)のように記述します。スクリプトのデバッグなどの際に便利です。
コード <html> <head> <title>Javaコンソールに文字を出力する(Netscape)</title> <script language="JavaScript"><!-- function outputJavaConsole() { for (i=0; i<10; i++) java.lang.System.out.println("Count"+i); } // --></script> </head> <body> <a href="javaScript:outputJavaConsole()">Java Consoleに文字を出力</a> </body> </html>

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