首页 > 代码库 > jqurey 将如2017-5-30转化为时间戳或者时间戳转化为日期的js方法

jqurey 将如2017-5-30转化为时间戳或者时间戳转化为日期的js方法

<script>
    function datetime_to_unix(datetime){
        var tmp_datetime = datetime.replace(/:/g,‘-‘);
        tmp_datetime = tmp_datetime.replace(/ /g,‘-‘);
        var arr = tmp_datetime.split("-");
        var now = new Date(Date.UTC(arr[0],arr[1]-1,arr[2],arr[3]-8,arr[4],arr[5]));
        return parseInt(now.getTime()/1000);
    }

    function unix_to_datetime(unix) {
        var now = new Date(parseInt(unix) * 1000);
        return now.toLocaleString().replace(/年|月/g, "-").replace(/日/g, " ");
    }

</script>

本文出自 “高山” 博客,谢绝转载!

jqurey 将如2017-5-30转化为时间戳或者时间戳转化为日期的js方法