确定要动态加载 html 中的 js 文件
我正在尝试建立一个由 htmls 和 javascript/ajax - jquery 以及许多 jquery 插件组成的项目。
对于许多html页面中的每一个,我都必须使用RequireJS,这就是我想要的..
我想根据属性(ajax调用的返回值)确定我应该加载缩小文件或非缩小文件
所以我喜欢需要一种机制来确定和决定(在页面加载之前或页面开始加载后)我想要加载哪些js文件......然后继续加载。
有没有一个好的方法来做到这一点?
I am trying to set up a project which consist of htmls and javascript/ajax - jquery with many jquery plugins.
For each of many html pages, I have to use RequireJS and here is what i want..
I want to determine based on the property(return value from an ajax call) that I should load the minified files or non minified files
So I kind of need a mechanism to determine and decide (before the page load or as soon as the page starts loading) which js files I would want to load... and then go ahead with the load.
Is there a nice way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,
看一下这个例子:
html
script/main.js
希望这能让你走上正路......
well,
take a look at this example:
the html
scripts/main.js
hope this set you on your way...