Date.prototype.addDays = function(days) { var dat = new Date(this.valueOf()); // (1) dat.setDate(dat.getDate() + days); // (2) return dat }.
確定! 回上一頁