jQuery date構(gòu)造函數(shù)是一種方便快捷的時(shí)間處理方式,可以幫助開發(fā)者處理時(shí)間問題。在使用之前,需要引入jQuery庫(kù)。
<script src="jquery.js"></script>
使用構(gòu)造函數(shù)創(chuàng)建一個(gè)日期對(duì)象:
var date = new Date();
獲取當(dāng)前時(shí)間:
var now = $.datepicker.formatDate("yy-mm-dd", date);
獲取日期中的年份:
var year = date.getFullYear();
獲取日期中的月份(需加1):
var month = date.getMonth() + 1; if (month < 10) { month = '0' + month; }
獲取日期中的日:
var day = date.getDate(); if (day < 10) { day = '0' + day; }
獲取日期中的小時(shí):
var hour = date.getHours(); if (hour < 10) { hour = '0' + hour; }
獲取日期中的分鐘:
var minute = date.getMinutes(); if (minute < 10) { minute = '0' + minute; }
獲取日期中的秒數(shù):
var second = date.getSeconds(); if (second < 10) { second = '0' + second; }
將獲取到的日期時(shí)間進(jìn)行格式化,方便展示:
var format = year + "-" + month + "-" + day + " " + hour + ":" + minute + ":" + second;
這是一個(gè)簡(jiǎn)單的示例,jQuery date可進(jìn)行更多日期和時(shí)間的操作,極大提高了前端處理時(shí)間的效率。
上一篇倒三角形 css