• js Date 时间格式化的扩展


    js Date 时间格式化的扩展:

     1 Date.prototype.format = function (fmt) {
     2     var o = {
     3         "M+": this.getMonth() + 1, //
     4         "d+": this.getDate(), //
     5         "h+": this.getHours() % 12 == 0 ? 12 : this.getHours() % 12, //
     6         "H+": this.getHours(), //小时           
     7         "m+": this.getMinutes(), //
     8         "s+": this.getSeconds(), //
     9         "q+": Math.floor((this.getMonth() + 3) / 3), //
    10         "S": this.getMilliseconds() //毫秒           
    11     };
    12     var week = {
    13         "0": "u65e5",
    14         "1": "u4e00",
    15         "2": "u4e8c",
    16         "3": "u4e09",
    17         "4": "u56db",
    18         "5": "u4e94",
    19         "6": "u516d"
    20     };
    21     if (/(y+)/.test(fmt)) {
    22         fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
    23     }
    24     if (/(E+)/.test(fmt)) {
    25         fmt = fmt.replace(RegExp.$1, ((RegExp.$1.length > 1) ? (RegExp.$1.length > 2 ? "u661fu671f" : "u5468") : "") + week[this.getDay() + ""]);
    26     }
    27     for (var k in o) {
    28         if (new RegExp("(" + k + ")").test(fmt)) {
    29             fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
    30         }
    31     }
    32     return fmt;
    33 }

    使用方法如下:

    var date = new Date("2016-03-11T16:20:12");
    $("#divResult").html(date.format("yyyy-MM-dd EE HH:mm:ss"));

  • 相关阅读:
    读取.robot文件写入excel文件中示例
    提示框、滚动条处理与JS的应用
    下拉框
    切换框架ifame
    层级定位
    定位一组元素
    Appium元素定位方法
    python+appium基本启动配置
    adb命令使用
    Python接口测试框架搭建
  • 原文地址:https://www.cnblogs.com/niuww/p/5640483.html
Copyright © 2020-2023  润新知