使用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获取系统当前时间的主要内容,如果未能解决你的问题,请参考以下文章