使用jquery获取系统当前时间

Posted lianghua

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jquery获取系统当前时间相关的知识,希望对你有一定的参考价值。

//判断是否在前面加0
function getNow(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 now=year+‘-‘+getNow(month)+"-"+getNow(date)+" "+getNow(h)+‘:‘+getNow(m)+":"+getNow(s);

以上是关于使用jquery获取系统当前时间的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 jquery 获取音频当前时间并显示消息

在做日历这个项目中使用jquery方法获取你当前点击的那个时间的年月日时分秒

jQuery获取当前时间

使用 jQuery 获取当前 URL?

jquery 时间大小比较和获取当前时间

怎么用jQuery 根据系统时间获得这个月的月初和月末呢。谢谢!