jquery:如何将其他 .js 文件包含到 .js 中
是否有任何 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
jQuery.getScript() 怎么样?它内置于 jQuery 中,工作原理如下:
How about jQuery.getScript()? It's built in to jQuery and works like so:
不完全是一个 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.