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 3 years have passed since last update.

DOMContentLoadedについて

Last updated at Posted at 2021-01-27

※ただのメモです

javascriptとかで使われる「DOMContentLoaded」と言うイベントは、最初の HTML 文書の読み込みと解析が完了したとき、スタイルシート、画像、サブフレームの読み込みが完了するのを待たずに発生するやつ

つまり画面をロードされる前に実行されるイベントになる。
以下の記述はHTML文書の読み込みと解析が完了したとき「123」の数値をコンソールに出力する簡単なコード

document.addEventListener('DOMContentLoaded',function (){
  console.log(123);
});






これと似たやつが「load」になる。以下コード

window.addEventListener('load',function (){
  console.log(123);
});

参考記事

0
0
0

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?