أدخل الكود التالي في كود JS الخاص بك:
انسخ رمز الكود كما يلي:
Date.prototype.format =وظيفة(تنسيق)
{
فار س = {
"M+" : this.getMonth()+1, //month
"d+" : this.getDate(), //day
"h+" : this.getHours(), //hour
"م+" : this.getMinutes(), // دقيقة
"s+" : this.getSeconds(), //الثانية
"q+" : Math.floor((this.getMonth()+3)/3), //ربع
"S" : this.getMillithans() // ميلي ثانية
};
إذا(/(ص+)/.test(التنسيق))
{
format=format.replace(RegExp.$1,(this.getFullYear()+"").substr(4- RegExp.$1.length));
}
ل(فار ك في س)
{
إذا (جديد RegExp("("+ k +")").test(format))
{
format = format.replace(RegExp.$1,RegExp.$1.length==1? o[k] :("00"+ o[k]).substr((""+ o[k]).length)) ;
}
}
تنسيق الإرجاع؛
};
طريقة الاستدعاء هي كما يلي:
var dt = new Date();
var nowDate = dt.format("yyyy-MM-dd hh:mm:ss");
يمكنك الحصول على الوقت الحالي: 2013-12-02 14:02:11