如何在JavaScript中獲取當前日期? 數組
您能夠使用擴展了 Date對象的Date.js庫,從而能夠使用.today()方法。 ide
若是您想對日期格式進行更多的粒度控制,我強烈建議您查看一下momentjs。 很棒的圖書館-只有5KB。 http://momentjs.com/ spa
你能夠用這個 code
<script> function my_curr_date() { var currentDate = new Date() var day = currentDate.getDate(); var month = currentDate.getMonth() + 1; var year = currentDate.getFullYear(); var my_date = month+"-"+day+"-"+year; document.getElementById("dateField").value=my_date; } </script>
HTML是 對象
<body onload='return my_curr_date();'> <input type='text' name='dateField' id='dateField' value='' /> </body>
var d = (new Date()).toString().split(' ').splice(1,3).join(' '); document.write(d)
要將其分解爲如下步驟: ip
(new Date()).toString()
給出了「 2013年6月28日星期五15:30:18 GMT-0700(PDT)」 字符串
(new Date()).toString().split(' ')
在每一個空格上分割上述字符串,並返回以下數組:[「 Fri」,「 Jun」,「 28」,「 2013」,「 15: 31:14「,」 GMT-0700「,」(PDT)「]] get
(new Date()).toString().split(' ').splice(1,3).join(' ')
從上面的數組中獲取第二,第三和第四個值,將它們與空格鏈接,而後返回字符串「 2013年6月28日」 input
var utc = new Date().toJSON().slice(0,10).replace(/-/g,'/'); document.write(utc);
若是您要重用utc
變量(例如new Date(utc)
,請使用replace
選項,由於Firefox和Safari沒法識別帶短劃線的日期。 it