Home > Web Front-end > JS Tutorial > JavaScript method to format a specified date object_javascript skills

JavaScript method to format a specified date object_javascript skills

WBOY
Release: 2016-05-16 16:02:57
Original
1080 people have browsed it

The example in this article describes the method of formatting a specified date object in javascript. Share it with everyone for your reference. The details are as follows:

/*
* 格式化Date对象为:“2015-04-17 10:20:00”
* var dateObj = new Date(); 
*/
function formartDate(dateObj){
  var updatetimeval =dateObj.getFullYear()+"-"+(dateObj.getMonth()+1)+"-" +dateObj.getDate()
   +" "+dateObj.getHours()+":"+dateObj.getMinutes()+":"+dateObj.getSeconds();
  return updatetimeval;
}
Copy after login

I hope this article will be helpful to everyone’s JavaScript programming design.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template