define(["jquery"],function(){ function hello(){ alert($); } function world(){ alert("234234weesr") } return { h:hello, w:world }})
解到requireJS有如下优点:
- 防止js加载阻塞页面渲染
- 使用程序调用的方式加载js,按需加载,
- 防止冲突、适合多人协作
本文共 270 字,大约阅读时间需要 1 分钟。
define(["jquery"],function(){ function hello(){ alert($); } function world(){ alert("234234weesr") } return { h:hello, w:world }})
解到requireJS有如下优点:
转载于:https://www.cnblogs.com/lylooooo/p/6853364.html