2

次のドキュメントでは、

<!doctype html>
<html>
  <head>
    <script language="javascript" src="example.js"></script>
  </head>
  <body>
  </body>
</html>

どこexample.jsにある:

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

ログステートメントは実行されることが保証されていますか?

4

2 に答える 2