JavaScript的Date对象

整理了一些JavaScript时间的对象,如下所示:
toLocaleString()得到当前的年月日和时间的字符串
toLocaleTimeString() 得到当前的时间字符串
toLocaleDateString() 得到当前的年月日字符串
setTime() 设置当前时间
getTime() 得到当前时间
setFullYear(year,month,day)  设置年份
getMonth() 得到月份
getDate() 得到是那一天
getHours() 得到当前是几点
getMinutes() 得到当前的分钟数
etSeconds() 得到当前的秒钟
getMilliseconds() 得到当前的毫秒数
 

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <script type="text/javascript">

            var date = new Date();
            
            window.onload = function (){
//                     document.write("当前时间:");
                    document.write(date.getYear()+1900+"年"+date.getMonth() +"月"+date.getDate()+"日"+date.getHours()+"时"
                    +date.getMinutes()+"分"+date.getSeconds()+"秒"+date.getMilliseconds()+"毫秒<br/>");

//                     获取当前字符串,当前输出(2015/11/26 下午2:00:53);
                    document.write(date.toLocaleString()+"<br />");
                            
//                     输出当前时间(下午2:09:20);
                    document.write(date.toLocaleTimeString()+"<br />");
                    
//                     输出当前日期(2015/11/26);
                    document.write(date.toLocaleDateString()+"<br />");
                    
                    var currentDate = date.setTime(date.getTime()+1000*60*60*24);
                    document.write(date.toLocaleString(currentDate)+"<br />");
            }
        </script>
    </head>
    <body>
    </body>
</html>

转载于:https://www.cnblogs.com/Oraice/p/4997837.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值