Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: jQueryオブジェクトの検査からjQueryバージョンを取得します
ほぼそれ..
毎回どのjQueryバージョンが読み込まれるかわからないので、バージョンごとに異なる反応ができるようにしたいと思います。
jQueryはそのバージョンをprototype(.fn)に公開します:
prototype
.fn
console.log( jQuery.fn.jquery );
たとえば、文字列"1.8.0"を出力します。
"1.8.0"
// Returns string Ex: "1.3.1" $().jquery; // Also returns string Ex: "1.3.1" jQuery.fn.jquery;