テキストフィールドに現在の日付を表示する


動作ブラウザ 【 IE:3.0  NN:2.0
Internet Explorer Netscape Navigator DreamPassport iCab
3.0x 4.0x 4.5 5.0x 5.5 2.0x 3.0x 4.0x 4.x 6.0 2 3 2.x
Windows - - -
Macintosh - - -
UNIX - - - - - - - -
Dreamcast - - - - - - - - - - -

ポイント dt = new Date(); m = dt.getMonth() + 1; d = dt.getDate(); document.myFORM.date.value = m+"月"+d+"日";
説  明 テキストフィールドに日付を表示するには「dt = new Date()」としてDateオブジェクトを作成しgetMonth()、getDate()で月日を読み出します。「document.フォーム名.エレメント名.value」に読み出した月日を書き込むことでテキストフィールドに日付を表示させることができます。
サンプル <html> <head> <title>テキストフィールドに現在の日付を表示する</title> <script Language="JavaScript"><!-- function pDate() { dt = new Date(); m = dt.getMonth() + 1; d = dt.getDate(); document.myFORM.date.value = m+"月"+d+"日"; } // --></script> </head> <body onLoad="pDate()"> <form name="myFORM"> 日付:<input type="text" name="date"> </form> </body> </html>
補足説明 なし

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

写真素材 PIXTA