学习笔记--js的date对象
Posted ......................
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学习笔记--js的date对象相关的知识,希望对你有一定的参考价值。
在js中获取当前时间
<script type="text/javascript">
var date=new Date();
document.write(date.toLocaleString());
document.write("<hr>");
document.write(date);
</script>
**获取当前年的方法
getFullYear();
**获取当前月的方法
getMoth():返回的是0-11月,如果想得到准确得知,加1
var date1=date.getMoth()+1;
document.write("moth"+date1);
**获取当前星期
getDay():星期,返回的是(0——6)
以上是关于学习笔记--js的date对象的主要内容,如果未能解决你的问题,请参考以下文章