新規のページを作成します

Index

  プッシュボタンを押すと、新たなページを作成するプログラムです。

[例]

  <SCRIPT TYPE="text/JavaScript">
  <!--
  function NewPage()
  {
    document.open();    // (1)
    document.write( "<HTML><HEAD>" );
    document.write( "<TITLE>NEW Page</TITLE>" );
    document.write( "</HEAD><BODY>" );
    document.alinkColor = 0xff0000;  // (2)
    document.bgColor = 0x000000;     // (3)
    document.fgColor = 0xffffff;     // (4)
    document.linkColor = 0xffff00;   // (5)
    document.vlinkColor = 0x00ff00;  // (6)
    document.write( "<H1>新規のページを作成しました!" );
    document.write( "</H1><BR>ここの URL は " );
    document.write( document.location, " です<BR><BR>" );  // (7)
    document.write("<A HREF='jss14.html'>戻る</A>");
    document.write( "</BODY></HTML>" );
    document.close();  // (8)
  }
  //-->
  </SCRIPT>

  <FORM NAME="np">
    <INPUT TYPE="BUTTON" VALUE="NewPage" ONCLICK="NewPage()">
  </FORM>

【解説】

 (1) ドキュメントを開きます。
 (2) 読み込み中のリンクの色を設定。
 (3) 背景色の設定。
 (4) 文字などのフォグラウンド色の設定。
 (5) リンクの文字色設定
 (6) 読み込み済みリンクの文字色の設定。
 (7) URL の取得。
 (8) ドキュメントをクローズします。
【実行してみよう】