如何在不使用JQuery的情况下找出我正在使用的JQuery版本?

时间:2022-01-02 07:16:31

In my page a jQuery file is added. Is there any way to find which version of jQuery is called?

在我的页面中添加了一个jQuery文件。有没有办法找到调用哪个版本的jQuery?

It would be nice if this can be handled using mootools or plain JavaScript because I don't know jQuery.

如果可以使用mootools或纯JavaScript来处理它会很好,因为我不知道jQuery。

Edit: Let me conclude from the below answers. If you just want the jQuery version, you can use

编辑:让我从以下答案中得出结论。如果你只是想要jQuery版本,你可以使用

$().jquery; or $.fn.jquery

If you are not good in jQuery you can define a variable and use the following code snippet:

如果你不擅长jQuery,你可以定义一个变量并使用以下代码片段:

var jVersion;
jVersion = window.jQuery.fn.jquery;

4 个解决方案

#1


19  

You can use either $().jquery; or $.fn.jquery

你可以使用$()。jquery;或$ .fn.jquery

Which will return a string containing the version number, e.g. 1.6.2.

这将返回包含版本号的字符串,例如1.6.2。

#2


3  

Just open Chrome Console or Firebug and type while in your page

只需打开Chrome控制台或Firebug,然后在页面中输入即可

$().jquery;

#3


1  

you can do:

你可以做:

alert($().jquery);

#4


1  

You can know the version by using:

您可以使用以下方式了解该版本:

jQuery.fn.jquery

#1


19  

You can use either $().jquery; or $.fn.jquery

你可以使用$()。jquery;或$ .fn.jquery

Which will return a string containing the version number, e.g. 1.6.2.

这将返回包含版本号的字符串,例如1.6.2。

#2


3  

Just open Chrome Console or Firebug and type while in your page

只需打开Chrome控制台或Firebug,然后在页面中输入即可

$().jquery;

#3


1  

you can do:

你可以做:

alert($().jquery);

#4


1  

You can know the version by using:

您可以使用以下方式了解该版本:

jQuery.fn.jquery