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 版本,所以我希望能够对不同的版本做出不同的反应。
prototypejQuery 在( )上公开其版本.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;