25
Javascript迄今为止添加了前导零
我已创建此脚本来以dd / mm / yyyy的格式提前10天计算日期: 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; 如果有人可以告诉我将这些内容插入脚本的位置,我将非常感激。