码迷,mamicode.com
首页 > Web开发 > 详细

js调用时间显示日期为116年

时间:2016-06-21 20:57:36      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:js调用时间显示日期为116年

今天在做一个客户网站的时候,突然发现以前用的调用系统时间的代码突然显示不正常了,时间显示116年,于是百度了一下,原来是 Date().getYear()这个API被废弃了,显示的是自1900年以来所经过的时间。于是果断加了个1900。


原代码如下:


<script language=JavaScript>


today=new Date();


function initArray(){


this.length=initArray.arguments.length


for(var i=0;i<this.length;i++)


this[i+1]=initArray.arguments[i]}


var d=new initArray("(星期日)","(星期一)","(星期二)","(星期三)","(星期四)","(星期五)","(星期六)");


document.write("<font color=#666666> ",today.getYear(),"年",today.getMonth()+1,"月",today.getDate(),"日 ",d[today.getDay()+1],"</font>" );


</script>


效果:

技术分享




加1900后的代码如下:


<script language=JavaScript>


today=new Date();


function initArray(){


this.length=initArray.arguments.length


for(var i=0;i<this.length;i++)


this[i+1]=initArray.arguments[i]}


var d=new initArray("(星期日)","(星期一)","(星期二)","(星期三)","(星期四)","(星期五)","(星期六)");


document.write("<font color=#666666> ",today.getYear()+1900,"年",today.getMonth()+1,"月",today.getDate(),"日 ",d[today.getDay()+1],"</font>" );


</script>



效果:

技术分享






本文出自 “世界照明网” 博客,转载请与作者联系!

js调用时间显示日期为116年

标签:js调用时间显示日期为116年

原文地址:http://lighting163.blog.51cto.com/5433990/1791438

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!