js将字符串转化为日期时间格式

function timeTransform(ele) {
    var time=$(ele).val();
    var d = new Date(time);
    var times=d.getFullYear() + '-' + (d.getMonth() + 1) + '-' + d.getDate() + ' ' + d.getHours() + ':' + d.getMinutes()
    return times;
}

 

    原文作者:大黄的Java笔记
    原文地址: https://blog.csdn.net/qq_39331713/article/details/84999797
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞