$(document).ready() source

前端 未结 3 441
死守一世寂寞
死守一世寂寞 2020-12-10 05:26

I need to wait for document readyness in my JavaScript, to insert a div at the bottom of the body.

I want to:

  • make this JavaScript file as small as pos
相关标签:
3条回答
  • 2020-12-10 05:36

    One option would be to just get the core.js jQuery file from github.

    You could probably slim it down quite a bit for code you don't need. Then run it through YUI compressor, and it should be pretty small.

    • http://github.com/jquery/jquery/blob/1.4.2/src/core.js (jQuery core)
    • http://yui.2clics.net/ (YUI compressor online)

    I tried it, and this code worked properly:

    $(function() {
        var newDiv = document.createElement('div');
        document.getElementsByTagName('body')[0].appendChild(newDiv);
    });
    

    Update: This was as small as I got it. It is entirely from jQuery and is around 1,278 bytes (compressed). Should get smaller when you gzip.

    Only difference is that you need to call it like:

    $.fn.ready(function() {
        // your code
    });
    

    YUI Compressed:

    (function(){var e=function(i,j){},c=window.jQuery,h=window.$,d,g=false,f=[],b;e.fn={ready:function(i){e.bindReady();if(e.isReady){i.call(document,e)}else{if(f){f.push(i)}}return this}};e.isReady=false;e.ready=function(){if(!e.isReady){if(!document.body){return setTimeout(e.ready,13)}e.isReady=true;if(f){var k,j=0;while((k=f[j++])){k.call(document,e)}f=null}if(e.fn.triggerHandler){e(document).triggerHandler("ready")}}};e.bindReady=function(){if(g){return}g=true;if(document.readyState==="complete"){return e.ready()}if(document.addEventListener){document.addEventListener("DOMContentLoaded",b,false);window.addEventListener("load",e.ready,false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",b);window.attachEvent("onload",e.ready);var i=false;try{i=window.frameElement==null}catch(j){}if(document.documentElement.doScroll&&i){a()}}}};d=e(document);if(document.addEventListener){b=function(){document.removeEventListener("DOMContentLoaded",b,false);e.ready()}}else{if(document.attachEvent){b=function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",b);e.ready()}}}}function a(){if(e.isReady){return}try{document.documentElement.doScroll("left")}catch(i){setTimeout(a,1);return}e.ready()}window.jQuery=window.$=e})();
    

    Full source (again, this is jQuery code):

    (function() {
    var jQuery = function( selector, context ) {
        },
        _jQuery = window.jQuery,
        _$ = window.$,
    
        rootjQuery,
        readyBound = false,
        readyList = [],
        DOMContentLoaded;
    
    jQuery.fn = {
        ready: function( fn ) {
            jQuery.bindReady();
            if ( jQuery.isReady ) {
                fn.call( document, jQuery );
            } else if ( readyList ) {
                readyList.push( fn );
            }
            return this;
        }
    };
    jQuery.isReady = false;
    jQuery.ready = function() {
            if ( !jQuery.isReady ) {
                if ( !document.body ) {
                    return setTimeout( jQuery.ready, 13 );
                }
                jQuery.isReady = true;
                if ( readyList ) {
                    var fn, i = 0;
                    while ( (fn = readyList[ i++ ]) ) {
                        fn.call( document, jQuery );
                    }
                    readyList = null;
                }
                if ( jQuery.fn.triggerHandler ) {
                    jQuery( document ).triggerHandler( "ready" );
                }
            }
        };
    jQuery.bindReady = function() {
            if ( readyBound ) {
                return;
            }
            readyBound = true;
    
            if ( document.readyState === "complete" ) {
                return jQuery.ready();
            }
            if ( document.addEventListener ) {
                document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false );
                window.addEventListener( "load", jQuery.ready, false );
            } else if ( document.attachEvent ) {
    
                document.attachEvent("onreadystatechange", DOMContentLoaded);
                window.attachEvent( "onload", jQuery.ready );
    
                var toplevel = false;
                try {
                    toplevel = window.frameElement == null;
                } catch(e) {}
                if ( document.documentElement.doScroll && toplevel ) {
                    doScrollCheck();
                }
            }
        };
    rootjQuery = jQuery(document);
    if ( document.addEventListener ) {
        DOMContentLoaded = function() {
            document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false );
            jQuery.ready();
        };
    } else if ( document.attachEvent ) {
        DOMContentLoaded = function() {
            if ( document.readyState === "complete" ) {
                document.detachEvent( "onreadystatechange", DOMContentLoaded );
                jQuery.ready();
            }
        };
    }
    function doScrollCheck() {
        if ( jQuery.isReady ) {
            return;
        }
        try {
    
            document.documentElement.doScroll("left");
        } catch(e) {
            setTimeout( doScrollCheck, 1 );
            return;
        }
        jQuery.ready();
    }
    window.jQuery = window.$ = jQuery;
    })();
    

    I'm sure there are more bytes that could be removed.

    Don't forget:

    /*!
     * jQuery JavaScript Library v1.4.2
     * http://jquery.com/
     *
     * Copyright 2010, John Resig
     * Dual licensed under the MIT or GPL Version 2 licenses.
     * http://jquery.org/license
    */
    
    0 讨论(0)
  • 2020-12-10 05:39

    You can start with script: http://snipplr.com/view/6029/domreadyjs/, not optimized (but work) for latest Safari though (e.g. use timer instead of supported DOMContentLoaded).

    0 讨论(0)
  • There are several implementations for "DOMReady" functions but most that I can find seem a bit dated, so I don't know how they will behave with IE8 and such.

    I would recommend using jQuery's ready() as I think it promises the most cross-browser compatibility. I'm not an expert in jQuery's source code, but this seems to be the right spot (lines 812-845 or search for function bindReady).

    0 讨论(0)
提交回复
热议问题