与 Jquery 一起使用的 Javascript concat/minify 库?

发布于 2024-11-04 02:16:26 字数 287 浏览 0 评论 0原文

我尝试过许多动态 Javascript 缩小/连接库,但它们似乎都有一个问题,即 $(document).ready() 命令中需要 Jquery 的任何内容最终都会显示“$ 未定义”,即使它们包含在要连接的文件列表中。

我可以通过将 Jquery 排除在连接之外(和 CUFON 以及任何其他依赖于 $(document).ready() 的东西)来解决这个问题,但这显然并不理想。

关于如何让它们愉快地一起玩,以便我可以将加载减少到 1 个文件,但仍然有 Jquery 可供需要它的脚本使用,有什么建议吗?

I've tried a number of dynamic Javascript minifying / concatenating libraries, but they all seem to have the problem that anything that requires Jquery in the $(document).ready() command ends up saying "$ is not defined", even if they're included in the list of files to be concatenated.

I can get around this by leaving Jquery out of the concatenation (and CUFON and anything else that relies on $(document).ready() ), but this is obviously not ideal.

Any suggestions on how to make them happily play together so I can reduce the loading to 1 file, but still have Jquery available to the scripts that need it?

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

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

发布评论

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

评论(3

桃酥萝莉 2024-11-11 02:16:26

经过进一步的研究,我发现 head.js 的效果很好 - 它只需要用 head.ready() 调用替换 $(document).ready() 调用,一切就可以愉快地一起进行了:-)

After some further research I found that head.js works a treat - it just requires replacing $(document).ready() calls with head.ready() calls and everything plays happily together :-)

我是男神闪亮亮 2024-11-11 02:16:26

我使用 此网站 进行静态 JavaScript 文件压缩。 YUI 压缩脚本从来没有遇到过任何问题。总是按预期工作。

但我确实使用了 jQuery 的缩小文件。我自己不会缩小它。我缩小了自己的插件和脚本,它们可以与 jQuery 一起使用。

为了简洁起见,我总是使用:

$(function() {
    // ready script
});

而不是:

$(document).ready(function() {
    // ready script
});

I use this web site for static javascript file compression. Never had any problems with YUI compressed scripts. Always worked as expected.

But it's true I'm using jQuery's minified file. I don't minify it myself. I minify my own plugins and scripts and they work with jQuery.

And for the sake of brevity I always use:

$(function() {
    // ready script
});

instead of:

$(document).ready(function() {
    // ready script
});
此生挚爱伱 2024-11-11 02:16:26

我已经使用 Microsoft 的 AjaxMin 成功缩小了 jQuery。这是 PackScript 开箱即用的缩小器,PackScript 是一个用于管理整个 Web 资源构建过程的出色工具。

看看 - http://danderson00 .blogspot.com.au/2013/01/packscript-next- Generation-build-for-web.html

I've successfully minified jQuery using Microsoft's AjaxMin. This is the minifier that is used out of the box by PackScript, an awesome tool for managing the whole web resource build process.

Check it out - http://danderson00.blogspot.com.au/2013/01/packscript-next-generation-build-for-web.html

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