zoukankan      html  css  js  c++  java
  • thymeleaf之日期格式化

    方法1:
    th:text="${#calendars.format(word.createTime,'yyyy-MM-dd HH:mm:ss')}"
    eg:yyyy-MM-dd HH:mm:ss 可以换成 yyyy-MM-dd
    方法2:
    th:text="${#dates.format(ci.rootsDate,'yyyy-MM-dd HH:mm:ss')}"
    方法3:

    <script th:inline="javascript">
        $(function (){
            Date.prototype.Format = function (fmt) { //将蓝括号的这段要放在调用时间的上面,
                var o = {
                    "M+": this.getMonth() + 1, //月份 
                    "d+": this.getDate(), //日 
                    "h+": this.getHours(), //小时 
                    "m+": this.getMinutes(), //分 
                    "s+": this.getSeconds(), //秒 
                    "q+": Math.floor((this.getMonth() + 3) / 3), //季度 
                    "S": this.getMilliseconds() //毫秒 
                };
                if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
                for (var k in o)
                if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
                return fmt;
            }       $.each([[${cctwps}]], function (){
                  var course = this.course,
                      courseClass = this.courseClass,
                      time = '';
                  //班级别名,班级地址,开课时间,截止时间 if(course.applyEndDate != null){//报名中 截止报名时间  
                    if(course.statusMark == 1){
                        time = '<span>'+
                                      '<span>'+course.applyEndDate.substring(0,10)+'截止报名</span>'+
                               '</span>';
                    }else{
                        time = '<span>'+
                                      '<span>'+new Date(course.startTime).Format("yyyy-MM-dd hh:mm")+'开课</span>'+
                               '</span>';
                    } 
                }else{
                    time = '';
                }
               
            });
        })
        </script>
    
  • 相关阅读:
    C++中字符串与字符串函数的使用
    面试题17:打印从1到最大的n位数
    动态规划:0-1背包
    POJ 2386 Lake Counting (简单深搜)
    HDU 2612 Find a way 简单广搜
    POJ 3669 Meteor Shower (BFS+预处理)
    深搜(DFS)广搜(BFS)详解
    HDU6055 Regular polygon(计算几何)
    hdu 6047 Maximum Sequence 贪心
    hdu 6045 Is Derek lying?(思维推导)
  • 原文地址:https://www.cnblogs.com/baicia/p/15337045.html
Copyright © 2011-2022 走看看