HTML date plus minus __html

Source: Internet
Author: User
Show the date of a certain year
function Getforecasttime (date) {
Date = new date (date);
var ndate = date.getfullyear () + "year";
Ndate+=date.getmonth () + 1 + "month" + date.getdate () + "Day";
return ndate;
}
Date plus minus
function Datechange (num, date) {
Debugger
if (!date) {
Date = new Date ();//When no value is passed, the default is the current date
Date = Date.getfullyear () + '-' + (Date.getmonth () + 1) + '-' + date.getdate ();
}
Date + "00:00:00";//set to the same day 12 o'clock in the morning
Date = Date.parse (new date)/1000;//converted to timestamp
Date + + (86400) * num;//modified timestamp
var newdate = new Date (parseint (Date) * 1000);//Convert to TIME
return newdate.getfullyear () + '-' + (Newdate.getmonth () + 1) + '-' + newdate.getdate ();

}


for (var i = 1; I <= 7; i++)
{

Alert (Getforecasttime (Datechange (i)));

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.