美文网首页
javascript学习笔记--Date练习

javascript学习笔记--Date练习

作者: 持续5年输出bug | 来源:发表于2018-10-24 23:18 被阅读0次
       //返回本地时间年/月/日/时/分/秒 
        var a=new Date();
        document.write(a.getFullYear());
        document.write(a.getMonth()+"月")
        document.write(a.getDay()+"日")
        document.write(a.getHours()+"时")
        document.write(a.getSeconds()+"分")
    
        //  根据世界时返回四位数年份
        document.write(getUTCFullYear();
        //根据世界时返回月份
       document.write(getUTCtMonthr(); 
    
         //返回本地时间与格林威治标准时间 (GMT) 的分钟差。
        document.write(`<br/>`+a.getTimezoneOffset());
         //设置小时
        a.setHours(15);
        //设置年
        a.setFullYear(2017)
    
        document.write(`<br/>`+a+`<br/>`)
        var b=a.toString()
          //将Date对象转换为字符串
        document.write(typeof b);
       //根据本地时间格式,把 Date 对象转换为字符串
        document.write(`<br/>`+a.toLocaleString());
          //返回Date对象的原始值
        document.write(`<br/>`+a.valueOf())

    相关文章

      网友评论

          本文标题:javascript学习笔记--Date练习

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