jQuery 1.4.2 VSDoc

前端 未结 15 512
夕颜
夕颜 2020-12-02 14:12

Where can I get the VSDoc for jQuery 1.4.2?

相关标签:
15条回答
  • 2020-12-02 14:49

    Not sure if it is the "official version" but now a 1.4.2-vsdoc file can be downloaded from the Microsoft CDN: http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.2-vsdoc.js

    0 讨论(0)
  • 2020-12-02 14:51

    Just a note on Herb's answer. Line 2940, for me anyway, was in the middle of the 'trigger' method. I inserted the code after 2949. Also, since it took me about 45 minutes to figure out why the comments weren't working for those two new routines - the "summary" tags have one too many 'm's in them!

    Here's the corrected version:

            delegate: function(selector, types, data, fn) {
        /// <summary>
        ///     Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements. See also "live".
        /// </summary>
        /// <param name="types" type="String">
        ///     A string containing a JavaScript event type, such as "click" or "keydown".
        /// </param>
        /// <param name="data" type="Object">
        ///     A map of data that will be passed to the event handler.
        /// </param>
        /// <param name="fn" type="Function">
        ///     A function to execute at the time the event is triggered.
        /// </param>
        /// <param name="selector" type="String">
        ///     An expression to search with.
        /// </param>
    
            return this.live(types, data, fn, selector);
        },
    
        undelegate: function(selector, types, fn) {
        /// <summary>
        ///     Remove a handler from the event for all elements which match the current selector, now or in the future, based upon a specific set of root elements. See also "die".
        /// </summary>
        /// <param name="selector" type="String">
        ///     An expression to search with.
        /// </param>
        /// <param name="types" type="String">
        ///     A string containing a JavaScript event type, such as "click" or "keydown".
        /// </param>
        /// <param name="fn" type="Function">
        ///     A function to execute at the time the event is triggered.
        /// </param>
            if (arguments.length === 0) {
                return this.unbind("live");
    
            } else {
                return this.die(types, null, fn, selector);
            }
        },
    
    0 讨论(0)
  • 2020-12-02 14:52

    The latest VSDoc supported version seems to be v.1.4.4 from Microsoft and can be found at http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.4-vsdoc.js.

    It is the new MS CDN for toolkits (replacing the old microsoft.com domain).

    0 讨论(0)
  • 2020-12-02 14:52

    The adventurous can add the following lines starting at 2949:

    delegate: function( selector, types, data, fn ) {
    /// <summary>
    ///   Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements. See also "live".
    /// </summary>
    /// <param name="selector" type="String">
    ///     An expression to search with.
    /// </param>
    /// <param name="types" type="String">
    ///     A string containing a JavaScript event type, such as "click" or "keydown".
    /// </param>
    /// <param name="data" type="Object">
    ///     A map of data that will be passed to the event handler.
    /// </param>
    /// <param name="fn" type="Function">
    ///     A function to execute at the time the event is triggered.
    /// </param>
        return this.live( types, data, fn, selector );
    },
    undelegate: function( selector, types, fn ) {
    /// <summary>
    ///   Remove a handler from the event for all elements which match the current selector, now or in the future, based upon a specific set of root elements. See also "die".
    /// </summary>
    /// <param name="selector" type="String">
    ///     An expression to search with.
    /// </param>
    /// <param name="types" type="String">
    ///     A string containing a JavaScript event type, such as "click" or "keydown".
    /// </param>
    /// <param name="data" type="Object">
    ///     A map of data that will be passed to the event handler.
    /// </param>
    /// <param name="fn" type="Function">
    ///     A function to execute at the time the event is triggered.
    /// </param>
        if ( arguments.length === 0 ) {
                return this.unbind( "live" );
    
        } else {
            return this.die( types, null, fn, selector );
        }
    },
    

    That documentation is pretty much ripped from jQuery web pages and from current definitions of "live" and "die", but feel free to adjust as you see fit.

    Also, at line 224:

    // The current version of jQuery being used
        jquery: "1.4.2",
    
    0 讨论(0)
  • 2020-12-02 14:52

    I decided to create one based on the input from this question & answers and share it. You can download it from this blog post:

    http://hugeonion.com/2010/06/26/here-is-the-missing-jquery-1-4-2-vsdoc-file/

    Hope that helps!

    0 讨论(0)
  • 2020-12-02 14:53

    Using jQuery 1.4.4, and the vsdoc from http://appendto.com/community/vsdoc (as well as the fix for line ~1750), I can update my Intellisense without error; however, whenever I type:

    $.

    Not only do I not get any relevant Intelliprompts, but I see:

    Javascript Intellisense Message: JSIntellisense:Internal/(3:4) : Object required

    This references the first function in my .js file:

    ; (function ($) { $.fn.MobileFunction = function (options) {

       //My Function
    };
    

    })(jQuery);

    I do have one warning: "Expected Expression" on the first closing paren in })(jQuery); but I cannot find a syntax error in the code. Even with the entire function commented out, Intellisense produces no output.

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