var myDate = new Date();
var years = myDate.getFullYear(); //从Date 对象以四位数字返回年份
var months = myDate.getMonth(); //从Date 对象返回月份 (0 ~ 11)
var days = myDate.getDate(); //从Date对象返回一个月中的某一(1~31)
var weekdays = myDate.getDay();//从Date对象返回一周中的某一天 (0~ 6)
var hours = myDate.getHours(); //返回 Date 对象的小时 (0 ~ 23)。
var minutes = myDate.getMinutes();//返回 Date 对象的分钟 (0 ~ 59)。
var seconds = myDate.getSeconds();//返回 Date 对象的秒数(0 ~ 59)。
var milliseconds = myDate.getMilliseconds(); //返回Date对象的毫秒(0~999)。
var gettime = myDate.getTime(); //返回 1970 年 1 月 1 日至今的毫秒数。
嗯,就是单纯的想记下来,以后用到就可以直接copy啦,还有,真心觉得jQuery实在不要太好用哇~
- 获取当前年月日时分秒 20XX年XX月XX日 XX:XX:XX
html :
<div id="time"></div>
js
setInterval(function(){
var myDate = new Date();
var years = myDate.getFullYear();
var months = myDate.getMonth() + 1;
var days = myDate.getDate();
var h = myDate.getHours();
if(h<10) h="0"+h;
var m = myDate.getMinutes();
if(m<10) m="0"+m;
var s = myDate.getSeconds();
if(s<10) s="0"+s;
$("#time").html(years+"年"+months+"月"+days+"日"+" "+h+":"+m+":"+s);
},1000);