javascript学习笔记--Date练习

2018-10-24  本文已影响0人  持续5年输出bug
   //返回本地时间年/月/日/时/分/秒 
    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())
上一篇下一篇

猜你喜欢

热点阅读