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
WBOYOriginal
2016-05-16 16:02:571077browse

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;
}

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

Statement:
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