0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

コピーライトのyearをJavaScriptを使用して自動で更新する方法

Posted at
1 / 2

コピーライトとは?

一度作成したらほとんど改訂されることのない資料とは違い、Webページは上書きによる更新が行われます。
発行年を入れることにより、「何年も更新されていない古いページだ」という印象を与えることを防ぎます。
そこで、手動で更新できるように取得できるようにしました。

## 記述方法の例

//HTML
<footer>
        &copy; <span class="year"></span> 373
</footer>

// 年取得 (JS)
const year = document.querySelector('.year');

const today = new Date();
const thisyear = today.getFullYear();
console.log(thisyear);


year.textContent = thisyear;

いかがでしょうか?
是非お試しください!

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?