javascript学习笔记--Date练习

   //返回本地时间年/月/日/时/分/秒 
    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(`
`+a.getTimezoneOffset()); //设置小时 a.setHours(15); //设置年 a.setFullYear(2017) document.write(`
`+a+`
`) var b=a.toString() //将Date对象转换为字符串 document.write(typeof b); //根据本地时间格式,把 Date 对象转换为字符串 document.write(`
`+a.toLocaleString()); //返回Date对象的原始值 document.write(`
`+a.valueOf())

你可能感兴趣的:(javascript学习笔记--Date练习)