如何在JavaScript中獲取當前日期?

如何在JavaScript中獲取當前日期? 數組


#1樓

您能夠使用擴展了 Date對象的Date.js庫,從而能夠使用.today()方法。 ide


#2樓

若是您想對日期格式進行更多的粒度控制,我強烈建議您查看一下momentjs。 很棒的圖書館-只有5KB。 http://momentjs.com/ spa


#3樓

你能夠用這個 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>

#4樓

var d = (new Date()).toString().split(' ').splice(1,3).join(' '); document.write(d)

要將其分解爲如下步驟: ip

  1. (new Date()).toString()給出了「 2013年6月28日星期五15:30:18 GMT-0700(PDT)」 字符串

  2. (new Date()).toString().split(' ')在每一個空格上分割上述字符串,並返回以下數組:[「 Fri」,「 Jun」,「 28」,「 2013」​​,「 15: 31:14「,」 GMT-0700「,」(PDT)「]] get

  3. (new Date()).toString().split(' ').splice(1,3).join(' ')從上面的數組中獲取第二,第三和第四個值,將它們與空格鏈接,而後返回字符串「 2013年6月28日」 input


#5樓

var utc = new Date().toJSON().slice(0,10).replace(/-/g,'/'); document.write(utc);

若是您要重用utc變量(例如new Date(utc) ,請使用replace選項,由於Firefox和Safari沒法識別帶短劃線的日期。 it

相關文章
相關標籤/搜索