script.js 是一个异步的 JavaScript 加载器和依赖管理器。支持的浏览器包括:
-
IE 6+
-
Opera 10+
-
Safari 3+
-
Chrome 1+
-
Firefox 2+
示例代码:
01 |
// load jquery and plugin at the same time. name it 'bundle' |
02 |
$script([ 'jquery.js' , 'my-jquery-plugin.js' ], 'bundle' ) |
03 |
04 |
// load your usage |
05 |
$script( 'my-app-that-uses-plugin.js' ) |
06 |
07 |
08 |
/*--- in my-jquery-plugin.js ---*/ |
09 |
$script.ready( 'bundle' , function () { |
10 |
// jquery & plugin (this file) are both ready |
11 |
// plugin code... |
12 |
}) |
13 |
14 |
15 |
/*--- in my-app-that-uses-plugin.js ---*/ |
16 |
$script.ready( 'bundle' , function () { |
17 |
// use your plugin :) |
18 |
}) |
Austin Liu 刘恒辉
Project Manager and Software Designer E-Mail:lzhdim@163.com Blog:https://lzhdim.cnblogs.com 欢迎收藏和转载此博客中的博文,但是请注明出处,给笔者一个与大家交流的空间。谢谢大家。 |