網頁底部的版權年份自動更新

對於html5的頁面而言,最簡單最短的代碼寫法:

<script>document.write(new Date().getFullYear())</script>

如果非要有一個開始的年份:

&copy; Copyright 2017<script>new Date().getFullYear()>2017&&document.write("-"+new Date().getFullYear());</script>, Company.

或者

&copy; Copyright 2010-<script>document.write(new Date().getFullYear())</script>, Company.
<p>Company &copy; <span id="year"></span> All Rights Reserved.</p>

 

如果是PHP的話:

<?php echo date('Y'); ?>

 

© 版权声明
THE END
請多多支持
点赞0
相关推荐
评论 抢沙发

    暂无评论内容