在jQuery中,可以使用JavaScript的`Date`對象來獲取當(dāng)前時間,并使用一些方法對其進行格式化。以下是一個示例:
var currentDate = new Date();
var year = currentDate.getFullYear();
var month = ("0" + (currentDate.getMonth() + 1)).slice(-2);
var day = ("0" + currentDate.getDate()).slice(-2);
var hour = ("0" + currentDate.getHours()).slice(-2);
var minute = ("0" + currentDate.getMinutes()).slice(-2);
var second = ("0" + currentDate.getSeconds()).slice(-2);
var formattedDate = year + "-" + month + "-" + day;
var formattedTime = hour + ":" + minute + ":" + second;
var formattedDateTime = formattedDate + " " + formattedTime;
console.log(formattedDateTime);
上述代碼首先創(chuàng)建一個`Date`對象,然后使用`getFullYear()`、`getMonth()`、`getDate()`、`getHours()`、`getMinutes()`和`getSeconds()`方法獲取當(dāng)前時間的年、月、日、時、分和秒。
接著,使用`slice()`方法對年、月、日、時、分和秒進行格式化,確保它們始終是兩位數(shù)的形式。
最后,通過字符串拼接將格式化后的日期和時間組合成所需的格式。在上述示例中,日期和時間之間以空格分隔,日期部分采用"年-月-日"的格式,時間部分采用"時:分:秒"的格式。
最后,通過調(diào)用`console.log()`打印出格式化后的日期和時間。
請注意,以上代碼在客戶端瀏覽器中執(zhí)行,因為JavaScript和jQuery都是前端技術(shù)。