在jquery中格式化顯示日期的方法:1.新建html項目,引入jquery;2.創建div標簽,設置id屬性;3.添加button按鈕,綁定onclick點擊事件;4.通過new Date()函數獲取當前時間,使用getFullYear()、getMonth()、getDate()函數獲取年月日;
具體步驟如下:
1.首先,新建一個html項目,并在項目中引入jquery;
<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>
2.引入jquery后,在項目中創建一個div標簽,并設置id屬性,用于顯示日期;
<div id="tetx"></div>
3.div標簽創建好后,添加一個button按鈕,并綁定onclick點擊事件,用于點擊顯示日期;
<button onClick="set()"><button>
4.最后,按鈕添加好后,在點擊事件中通過new Date()函數獲取當前時間,在使用getFullYear()、getMonth()、getDate()函數分別獲取時間的年月日,并顯示即可;
function set(){
var data = new Data();
var res = data.getFullYear() + "年" + (parsrInt(data.getMonth()) + 1) + '月' + data.getDate() + '日';
$('#text').html(out);
}