javascript - Comment convertir rapidement l'heure CST en horodatage
女神的闺蜜爱上我
女神的闺蜜爱上我 2017-06-26 10:53:32
0
1
937
Thu Jun 15 2017 14:35:48 GMT+0800 (CST)

Par exemple, pour une heure comme celle-ci, j'utilise le plug-in d'élément VUE. Je ne sais pas pourquoi l'heure apparaît dans ce format. Existe-t-il une méthode de conversion plus simple ?

女神的闺蜜爱上我
女神的闺蜜爱上我

répondre à tous(1)
学习ing

new Date('Thu Jun 15 2017 14:35:48 GMT+0800 (CST)').getTime()
Attacher une fonction

function parseTime (timeStamp, format) {
    var date = new Date(timeStamp);
    var o = {
        'M+' : date.getMonth() + 1, //month
        'D+' : date.getDate(), //day
        'h+' : date.getHours(), //hour
        'm+' : date.getMinutes(), //minute
        's+' : date.getSeconds(), //second
        'S' : date.getMilliseconds() //millisecond
    }

    if(/(Y+)/.test(format)) {
        format = format.replace(RegExp.,
            (date.getFullYear() + '').substr(4 - RegExp..length));
    }

    for(var k in o) {
        if (new RegExp('('+ k +')').test(format)) {
            format = format.replace(RegExp.,
                RegExp..length == 1 ? o[k] : ('00'+ o[k]).substr((''+ o[k]).length));
        }
    }
    return format;
}
// usage
parseTime(new Date.getTime(), 'hh:mm')
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!