首页 > 代码库 > js Date对象

js Date对象

<html>
<script type="text/javascript">



var myDate = new Date();

document.write(myDate);//返回当日的日期和时间。
//document.write("<br>月份的某一天:"+myDate.getDate());//返回月份的某一天
//document.write("<br>一周中的某一天 (0 ~ 6):"+myDate.getDay());//返回一周中的某一天 (0 ~ 6)
//document.write("<br>月份 (0 ~ 11):"+myDate.getMonth());//返回月份 (0 ~ 11)
//document.write("<br>年份:"+myDate.getFullYear());//以四位数字返回年份
//document.write("<br>小时 (0 ~ 23):"+myDate.getHours());//返回 小时 (0 ~ 23)。
//document.write("<br>分钟 (0 ~ 59):"+myDate.getMinutes());//返回 分钟 (0 ~ 59)。
//document.write("<br>秒数 (0 ~ 59):"+myDate.getSeconds());//返回 秒数 (0 ~ 59)。
//document.write("<br>至今的毫秒数:"+myDate.getTime());//返回 1970 年 1 月 1 日至今的毫秒数。
</script>
</html>


js Date对象