フォームフィールドに現在の日付を表示する
対応バージョン

3.0a 4.0 4.05 5.0
Windows




Macintosh




ポイント
dt = new Date();
y = dt.getFullYear();
m = dt.getMonth() + 1;
d = dt.getDate();
myField = this.getField("cDate");
myField.value = y+"/"+m+"/"+d;
説  明
フォームフィールドに現在の日付を入れるにはDateオブジェクトを作成しgetFullYear、getMonth、getDateで年月日を取得します。getFieldで代入先のフォームフィールドを取得しvalueプロパティに表示する文字列(日付)を入れます。
サンプル

dt = new Date();
y = dt.getFullYear();
m = dt.getMonth() + 1;
d = dt.getDate();
myField = this.getField("cDate");
myField.value = y+"/"+m+"/"+d;

 
■サンプルスクリプトを実行する >> Acrobat で動作確認
補足説明
なし