jquery:如何将其他 .js 文件包含到 .js 中

发布于 2024-08-28 06:28:27 字数 132 浏览 4 评论 0原文

是否有任何 jquery 插件(而不是 incldeMany)或简单的函数来按需包含 js 文件?

例如:

$.include('myscript.js'); 

Is there any jquery plugin (instead of incldeMany) or simple function to include js-files on demand ?

for example:

$.include('myscript.js'); 

?

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

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

发布评论

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

评论(2

早乙女 2024-09-04 06:28:27

jQuery.getScript() 怎么样?它内置于 jQuery 中,工作原理如下:

$.getScript('ajax/test.js', function() {
    alert('Load was performed.');
});

How about jQuery.getScript()? It's built in to jQuery and works like so:

$.getScript('ajax/test.js', function() {
    alert('Load was performed.');
});
孤独患者 2024-09-04 06:28:27

不完全是一个 jQuery 插件,但您可以尝试查看 RequireJS。特别是“如何将 RequireJS 与 jQuery 结合使用”部分。

我对这个解决方案还没有太多经验,但从我读到的和使用过的内容来看,我喜欢这种可能性。

Not exactly a jQuery plugin, but you might try looking into RequireJS. Especially the "How to use RequireJS with jQuery" section.

I don't have much experience with this solution yet, but from what I've read and played around with I like the possibilities.

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