Jquery获取当前时间的方法,已经封装好。
function fun_time(){
var myDate = new Date();
//获取当前年
var year=myDate.getFullYear();
//获取当前月
var month=myDate.getMonth()+1;
//获取当前日
var date=myDate.getDate();
//获取当前小时数
var h=myDate.getHours();
//获取当前分钟数
var m=myDate.getMinutes();
//获取当前秒
var s=myDate.getSeconds();
return year + '-' + month + '-' + date + ' ' + h + ':' + m + ':' + s;
}