このスクリプトを作成して、10日前の日付をdd / mm / yyyyの形式で計算します。
var MyDate = new Date();
var MyDateString = new Date();
MyDate.setDate(MyDate.getDate()+10);
MyDateString = MyDate.getDate() + '/' + (MyDate.getMonth()+1) + '/' + MyDate.getFullYear();
これらのルールをスクリプトに追加することで、日と月のコンポーネントの先頭にゼロを付けて日付を表示する必要があります。うまく動かないようです。
if (MyDate.getMonth < 10)getMonth = '0' + getMonth;
そして
if (MyDate.getDate <10)get.Date = '0' + getDate;
誰かがスクリプトにこれらを挿入する場所を教えてくれれば、本当にありがたいです。