js 获取当前时间

 

/**
 * 获取当前时间
 */
function p(s) {
    return s < 10 ? '0' + s: s;
}
var myDate = new Date();
//获取当前年
var year=myDate.getFullYear();
//获取当前月
var month=myDate.getMonth()+1;
//获取当前日
var date=myDate.getDate(); 

var h=myDate.getHours();       //获取当前小时数(0-23)
var m=myDate.getMinutes();     //获取当前分钟数(0-59)
var s=myDate.getSeconds();  
var currentDate = year+'-'+p(month)+"-"+p(date)+" "+p(h)+':'+p(m)+":"+p(s);  //年-月-日  时:分:秒

   // 拼接时间
var nowTime = year+'-'+p(month)+"-"+p(date);//年-月-日  

 

posted @ 2018-06-05 13:08  申继林  阅读(111)  评论(0编辑  收藏  举报