最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Javascript - Formatting Date string to YYYY-MM-DD - Stack Overflow

programmeradmin1浏览0评论

I need to express a Date as a String with the exact format format:

 2015-01-20   

I see there is an date.toIsoFormatString() but not sure where or how to provide the format shown above.

 Here is my code:

 var future = new Date();
 future.setDate(future.getDate() + 30);
 console.log(future);

Now I want future.toString() or future.toIsoFormatString() to display the date in just the YYYY-MM-DD format.

I need to express a Date as a String with the exact format format:

 2015-01-20   

I see there is an date.toIsoFormatString() but not sure where or how to provide the format shown above.

 Here is my code:

 var future = new Date();
 future.setDate(future.getDate() + 30);
 console.log(future);

Now I want future.toString() or future.toIsoFormatString() to display the date in just the YYYY-MM-DD format.

Share Improve this question asked Jan 30, 2015 at 22:50 Get SmarterGet Smarter 1912 gold badges3 silver badges9 bronze badges 6
  • 2 And any of these answers or the documentation couldn't solve your problem? – Teemu Commented Jan 30, 2015 at 22:51
  • No Teemu. No console.log(future.toString('yyyy-MM-dd')); taken directly from this answer yields: Sun Mar 01 2015 15:01:59 GMT-0800 (PST), but if you can think of an answer please post it. – Get Smarter Commented Jan 30, 2015 at 23:03
  • No? Just keep digging ... ; ) – Teemu Commented Jan 30, 2015 at 23:06
  • www.stackoverflow. --> www.justkeepdigging. ? :) – Get Smarter Commented Jan 30, 2015 at 23:12
  • Guess I've had too much Vodka ... – Get Smarter Commented Jan 30, 2015 at 23:14
 |  Show 1 more ment

2 Answers 2

Reset to default 6

IE>8 and all other updated browsers can do this natively-

new Date().toISOString().slice(0,10);

You can use momentJs library for formated date.

Example without momentJs :

 myDate = new Date();
 myDate.getFullYear() + "-" + (myDate.getMonth()+1) + "-" + myDate.getDate() // 2015-1-31

Example with momentJs :

moment().format("YYYY-MM-DD") // 2015-01-31

MomentJs have many others useful function

发布评论

评论列表(0)

  1. 暂无评论