如何在JavaScript中获取当前年份?


当前回答

举个例子,你可以把它放在任何你想显示它的地方,而不需要引用页脚中的脚本或其他类似答案的地方

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

页脚上的版权说明作为示例

Copyright 2010 - <script>new Date().getFullYear()>document.write(new Date().getFullYear());</script>

其他回答

如果您将ES6 Javascript与Angular、React、VueJS等框架一起使用。然后,您应该集成第三方实用程序库,以方便您的项目。DayJS是最流行的轻量级库之一,具有不可变的数据结构。在dayJS中,您可以在一行简单的代码中获得年份,如下所示。

dayjs().year()

还有很多有用的方法。所以我建议你在下一个项目中使用dayjs。

抓住这个类,我们可以用javascript中的year替换它的textContent:document.querySelector(“.yr”).textContent=(new Date().getFullYear());&副本<span class=“yr”></span>公司。保留所有权利。

您可以用一行JS代码获取当前年份。

<p>版权所有<script>document.write(newDate().getFullYear())</脚本></p>

举个例子,你可以把它放在任何你想显示它的地方,而不需要引用页脚中的脚本或其他类似答案的地方

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

页脚上的版权说明作为示例

Copyright 2010 - <script>new Date().getFullYear()>document.write(new Date().getFullYear());</script>
// Return today's date and time
var currentTime = new Date()

// returns the month (from 0 to 11)
var month = currentTime.getMonth() + 1

// returns the day of the month (from 1 to 31)
var day = currentTime.getDate()

// returns the year (four digits)
var year = currentTime.getFullYear()

// write output MM/dd/yyyy
document.write(month + "/" + day + "/" + year)