こんな方におすすめ
- jQueryの最新バージョンを読み込む方法を知りたい方
- jQueryのバージョン一覧を見たい方
Webサイトを作る方にとってjQueryは必須ライブラリです。
jQueryの最新バージョンをダウンロードして自らのサーバーに配置するのは、面倒臭いし、読み込みも遅くて困ります。
今回は「jQueryの最新バージョンを高速に読み込むためのhtmlタグ」をご紹介します。
[toc]
jQueryの最新バージョンを高速に読み込むためのhtmlタグ
以下のhtmlタグを</body>の直前あたりにコピペすればOKです。
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
こちらはGoogleのキャッシュサーバー(CDN)を利用しており、自身のサーバーより高速な読み込みが可能です。
3.6.0はjQueryのバージョン番号で2022年2月現在の最新バージョンになります。
古いバージョンも基本的に利用できますので、後術するjQueryバージョン一覧からお好きな番号に書き換えてください。
最新版が気になる方はjQueryの公式サイトをご覧ください。
利用できるjQueryバージョン一覧。
利用できるバージョンはこちらになります。
jQuery 1.x.x
https://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.3.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.10.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.12.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.12.3/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js
jQuery 2.x.x
https://ajax.googleapis.com/ajax/libs/jquery/2.0.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/2.2.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js
jQuery 3.x.x
https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/3.5.0/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
さいごに
今回は「jQueryの最新バージョンを高速に読み込むためのhtmlタグ」をご紹介しました。
誰かのお役に立てたら幸いです。
以上、ワーカホリックダイアリーでした。