美文网首页
Date()对象

Date()对象

作者: WangYatao | 来源:发表于2017-06-22 12:42 被阅读7次

    格式:var 变量名=new Date();
    调用时间:变量名.要获取的数据;


    Paste_Image.png

    ****例如要获取当前的小时****

    Paste_Image.png
    <!DOCTYPE html>
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
    <input type="button" value="获取时间" onclick="getDate()"/>
    </body>
    <script>
        function getDate(){
            var getTime=new Date();
            alert(getTime.getHours());
        }
        </script>
    </html>
    

    相关文章

      网友评论

          本文标题:Date()对象

          本文链接:https://www.haomeiwen.com/subject/mbffcxtx.html