JavaScriptプログラムに関する各種メモ書き:タグ「日付」での検索

Copyrightの今年の年をJavaScriptで表示させる / 今年の年を表示させるWebComponentsを作る

毎年変更するのが面倒なCopyrightの今年の年をJavaScriptで表示させる

2024をJavaScriptで表示

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

 ↓

2024

よくあるコピーライトをJavaScriptで表示

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

 ↓

© 2024 hogehoge.com 

● 今年の年を表示させるWebComponentsを作る

my-copyright.js

class MyCopyrightElement extends HTMLElement {
    static observedAttributes = ['text'];
    connectedCallback() {
        const text = this.getAttribute('text');
        this.innerText = `Copyright ©${new Date().getFullYear()} ${text}`;
    }
}
customElements.define('my-copyright', MyCopyrightElement);

html

  <my-copyright text="株式会社 テストテストカンパニー"></my-copyright>
  <script src="my-copyright.js"></script>

↓ このように表示されます

Copyright ©2022 株式会社 テストテストカンパニー
No.1016
05/14 16:49

edit

日付