如何使用“Little Loader”加载具有依赖项的js文件?

时间:2017-10-26 14:45:06

标签: javascript jquery datatables loader

我正在努力加快DataTables.js的加载速度。目前,在DataTables'之前,网站用户界面几乎可以使用4秒。功能出现。我的一个想法是使用JavasScript加载器。我做了一些研究,发现了little-loader.js。这些示例没有提到如何使用它来加载具有依赖项的文件。如何使用它来加载这些文件?到目前为止,这是我的代码:

<script src="https://unpkg.com/little-loader@VERSION/dist/little-loader.min.js"></script>

<script>
window._lload("http://example.com/jquery-min.js", function (err) {
   // `err` is script load error.
   if( err === '' ) {
       window._lload("http://example.com/js/datatables-min.js", function (err) {
       //Maybe load other scripts
       } );
   }

} );
</script>

0 个答案:

没有答案