如何确定 jQuery Tools 缩小文件中包含哪些内容?

发布于 2024-12-08 16:34:04 字数 249 浏览 0 评论 0原文

我继承了一个项目,其中包含 jQuery 工具 的缩小版本。 jQuery 工具站点允许您下载具有各种用户选择的脚本选项的自定义版本。

如何确定缩小版本中包含哪些选项,以便在下载更新时可以获得相同的选项?

我查看了该文件,标题中没有描述其中包含内容的信息。在不知道原始构建组件的情况下如何进行升级?

I've inherited a project that includes a minified version of jQuery Tools. The jQuery Tools site allows you to download a customized build with various user-selected script options.

How can I determine which options were included with the minified version so I can get the same options when I download the update?

I've looked at the file and there is no information in the header describing what's included. How is it ever possible to upgrade without knowing the original build components?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

幸福还没到 2024-12-15 16:34:04

我对 Tools 不太熟悉,但我只是想在包含 Tools 的页面的地址栏中运行它(在 Chrome 中测试):

javascript:alert(JSON.stringify(Object.keys(jQuery.tools)));

这将列出 $.tools 对象中的所有方法(加上“版本”),但我不知道这是否真的是所含部件的完整列表。

如果这没有正确列出它们,您唯一的选择可能就是反复试验。

I'm not too familiar with Tools, but I just thought of running this in the address bar of the page containing Tools (tested in Chrome):

javascript:alert(JSON.stringify(Object.keys(jQuery.tools)));

This will list all the methods in the $.tools object (plus 'version'), but I don't know if this is really a complete list of included parts or not.

If this doesn't list them properly, your only option is likely trial and error.

孤独患者 2024-12-15 16:34:04

我认为这就是您所寻找的

如果您使用 Firebug 或类似的 JavaScript 调试器,您可以通过从控制台运行以下命令轻松测试包含哪些工具及其版本:

console.dir($.tools);


http://flowplayer.org/tools/documentation/basics.html#include

I think this is what you looking for

If you are using Firebug or similar JavaScript debugger you can easily test which tools are included and what are their versions by running the following command from the console:

console.dir($.tools);

from
http://flowplayer.org/tools/documentation/basics.html#include

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文