码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2017-05-31 10:24:42      阅读:677      评论:0      收藏:0      [点我收藏+]

标签: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方法

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

原文地址:http://gaoshan2016.blog.51cto.com/10804321/1930773

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!