更新日:

HeadタグにJqueryを埋め込む

ソースコード

index.html
<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>HeadタグにJqueryを埋め込む</title>
  </head>
  <body>
    <script>
      const script = document.createElement('script');
      script.setAttribute('src', 'https://code.jquery.com/jquery-3.2.1.min.js');
      document.getElementsByTagName('head')[0].appendChild(script);

      setTimeout(() => {
        // Jqueryのバージョンを表示
        console.log($.fn.jquery);
      }, 1000);
    </script>
  </body>
</html> >}}