ページの末尾にCopyrightを記載したサイトを見かけます。ちなみに『©』は『©』と書くことで表示できます。

Copyright © 2022 カミュプリィ (Commuply Inc.)

年が入っているため更新しないでおくと、何年もサイトを更新していないように思われてしまいます。
自動更新できないかなぁと考えました。

HTML

 htmlのhead部分に使用するジャバスクリプトのファイルを記載します。

<head>
<script type="text/javascript" src="./loadevent.js"></script>
</head>

 つぎに、実際に表示される年の数字部分に『currentyear』と名前を付けます。この名前をつけた部分をジャバスクリプトで書き換えます。

<span class="currentyear">2022</span>

JavaScript

 『currentyear』を今年へ書き換える関数を書きます。

function updateyear() {
let currentyear = document.getElementsByClassName(‘currentyear’);
for(var i = 0, len = currentyear.length|0; i < len; i = i + 1|0) {
currentyear[i].textContent = (new Date()).getFullYear();
}
}

 つぎに、htmlが表示されたときに『updateyear』を呼び出す設定をします。

window.addEventListener('load', updateyear);

.htaccess (2) @False (3) @True (5) ByRef (3) ByVal (3) CGI (6) cron (2) CSS (8) Excel (3) False (3) Goto (3) HTML (4) httpd.conf (2) if (3) Java (5) Java Servlet (3) Linux (3) List (3) Lotus Script (35) Lotus 式言語 (28) ls (2) MariaDB (4) Notes/Domino (12) null (5) Option Compare (3) Path (3) PHP (5) Python (7) Spring Boot (3) True (3) UTF-8 (4) VBScript (29) Windows (9) インストール (6) セットアップ (2) ダウンロード (2) ノーコード (4) ファイル一覧 (2) ローコード (3) 変換 (3) 変数 (3) 比較方法 (7) 環境変数 (4) 配列 (4) 開発環境 (4)