完整(四位数)年份或最后两位数的年份更新,使用JavaScript

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了完整(四位数)年份或最后两位数的年份更新,使用JavaScript相关的知识,希望对你有一定的参考价值。

  1. For full year (four digits):
  2.  
  3. JS:
  4.  
  5. today=new Date();
  6. y0=today.getFullYear();
  7.  
  8.  
  9. <p>&copy; <script type="text/javascript">document.write(y0);</script> Somecompany, Inc. All Rights reserved.</p>
  10.  
  11. - - - - -
  12.  
  13. For partial year (last two digits):
  14.  
  15. JS:
  16.  
  17. var foo = (new Date().getFullYear()).toString();
  18. // Contains last two characters of the full year.
  19. // ex: 2003 evaluates to 03.
  20. var bar = foo.substring(foo.length, 2);
  21.  
  22. HTML:
  23.  
  24. <p>All contents &trade; and &copy; 2005-<script type="text/javascript">document.write(bar);</script> Somecompany, Inc. unless otherwise noted herein. All rights reserved.</p>

以上是关于完整(四位数)年份或最后两位数的年份更新,使用JavaScript的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript getFullYear() 方法

time

时间格式大全

time模块

python中时间日期格式化符号

python学习笔记:获取系统时间