Bootstrap 年号自动递增

时间:2021-04-17 12:44:13

标签: html css bootstrap-4

有没有办法让你每年自动递增一个数字。

例如: 您有一家于 2010 年开始的业务,并且您在网站上写着“我们拥有 11 年的经验”(截至 2021 年)。

当我们进入 2022 年时,有没有办法将这个数字自动增加到 12 年?

1 个答案:

答案 0 :(得分:2)

Bootstrap 不提供此功能,但您可以使用 javascript 执行类似的操作:

we have
<script>document.write(new Date().getFullYear() - 2010)</script>
years of experience