• 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>

  • 相关阅读:
    UVALive 5966 Blade and Sword -- 搜索(中等题)
    UVA 12380 Glimmr in Distress --DFS
    【转】最长回文子串的O(n)的Manacher算法
    UVA 12382 Grid of Lamps --贪心+优先队列
    UVA 12377 Number Coding --DFS
    高斯消元模板
    图的全局最小割的Stoer-Wagner算法及例题
    逻辑运算符短路特性的应用
    为什么在 Java 中用 (low+high)>>>1 代替 (low+high)/2 或 (low+high)>>1 来计算平均值呢?好在哪里?
    数据库读写分离和数据一致性的冲突
  • 原文地址:https://www.cnblogs.com/Oraice/p/4997837.html
Copyright © 2020-2023  润新知