管理

异步的 JavaScript 加载器 script.js

Posted on 2014-06-25 07:03  lzhdim  阅读(323)  评论(0编辑  收藏  举报

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 })
Copyright © 2000-2022 Lzhdim Technology Software All Rights Reserved