异步加载 javascript css 用什么? 推荐 headjs , 不解释

异步加载 javascript css 用什么? 推荐 headjs , 不解释


<html>
    <head>
        <script src="head.min.js"></script>
    </head>
    <body>
        <!-- some content-->

        <!-- injected via a module or an include -->
        <script>
            // schedule the execution of the function for later
            // when the rest of the document has finished loading
            head.ready(document, function () {
                // some big function
            });
        </script>

        <!-- some content-->
    </body></html>


// Attention: subtility herehead.ready(function() {
    // push a function to the end of the page for later execution
    // runs once all files have finished loading
    
    // WARNING: if no files are cued for loading this will NOT trigger !});head.ready(document, function() {
    // push a function to the end of the page for later execution
    // runs as soon as the document is ready});head.ready("file1.js", function() {
    // execute this function, only when file1.js has finished loading
    // used in conjunction with head.load("file1.js");});head.ready(["file1.js", "file2.js"], function() {
    // execute this function, only when file1.js AND file2.js has finished loading
    // used in conjunction with head.load("file1.js", "file2.js");});head.ready("label1", function() {
    // execute this function, only when label1 has finished loading
    // used in conjunction with head.load({ label1: "file1.js" });});head.ready(["label1", "label2"], function() {
    // execute this function, only when label1 AND label2 has finished loading
    // used in conjunction with head.load([{ label1: "file1.js" }, { label2: "file2.js" }]);});


你可能感兴趣的:(JavaScript,css,异步加载,headjs)