<span style="color: #0000ff">//js时间戳转换日期<br>function</span><span style="color: #000000"> formatDate(now) { </span><span style="color: #0000ff">var</span> year=<span style="color: #000000">now.getFullYear(); </span><span style="color: #0000ff">var</span> month=now.getMonth()+1<span style="color: #000000">; </span><span style="color: #0000ff">var</span> date=<span style="color: #000000">now.getDate(); </span><span style="color: #0000ff">var</span> hour=<span style="color: #000000">now.getHours(); </span><span style="color: #0000ff">var</span> minute=<span style="color: #000000">now.getMinutes(); </span><span style="color: #0000ff">var</span> second=<span style="color: #000000">now.getSeconds(); </span><span style="color: #0000ff">return</span> year+"-"+month+"-"+date+" "+hour+":"+minute+":"+<span style="color: #000000">second; } </span><span style="color: #0000ff">var</span> d=<span style="color: #0000ff">new</span><span style="color: #000000"> Date(时间戳(毫秒)); alert(formatDate(d));</span>
The above is the detailed content of js timestamp conversion date. For more information, please follow other related articles on the PHP Chinese website!