方法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>
