zoukankan      html  css  js  c++  java
  • bootstrap-table中时间戳转换为日期格式。

    {
    field: 'createdTime',
    title: '创建时间',
    formatter: function (value, row, index) {
    return changeDateFormat(value)
    }
    },

    function changeDateFormat(cellval) {
    var dateVal = cellval + "";
    if (cellval != null) {
    var date = new Date(parseInt(dateVal.replace("/Date(", "").replace(")/", ""), 10));
    var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
    var currentDate = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
    var hours = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
    var minutes = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
    var seconds = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
    return date.getFullYear() + "-" + month + "-" + currentDate + " " + hours + ":" + minutes + ":" + seconds;
    }
    }

  • 相关阅读:
    Problem C: 类的初体验(V)
    接口与继承
    类和对象
    java函数方法
    数组
    string类的一些函数方法
    java语法基础
    大道至简——做个懒人
    java编程 求和
    编程的精义
  • 原文地址:https://www.cnblogs.com/xubao/p/12373197.html
Copyright © 2011-2022 走看看