jQuery 1.4.2 VSDoc

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

Where can I get the VSDoc for jQuery 1.4.2?

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

    this page contain a list of vsdoc files on microsoft's CDN

    http://www.asp.net/ajaxlibrary/cdn.ashx

    just search for vsdoc and u will find it :)

    right now its not on official jquery download page

    0 讨论(0)
  • 2020-12-02 15:01

    As well as renaming the VSDoc file (1.4.1) you may also have to change the jQuery version number used in the 1.4.1-vsdoc.js file to 1.4.2.

    See line# 224,

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

    For what it's worth, and from this question:

    jQuery 1.4.3 vsdoc

    Someone has updated the jQuery vsdoc for JQuery 1.4.3. It's at:

    http://appendto.com/community/vsdoc

    0 讨论(0)
  • 2020-12-02 15:04

    You always get it from http://docs.jquery.com/Downloading_jQuery - if it's not there yet, it's not available yet. v1.4.1 exists - see screenshot - but 1.4.2 isn't ready yet.

    0 讨论(0)
  • 2020-12-02 15:05

    For the time being you could always just rename "jquery-1.4.1-vsdoc.js" to "jquery-1.4.2-vsdoc.js" and when they release the new vsdoc version just replace it.

    Note: I had to then modify the script source path and then change it back again to force vs to pick up the vsdoc. I just added a forward slash at the start of the src attribute value and then removed it.

    0 讨论(0)
  • 2020-12-02 15:05

    You can get it from here:

    http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.2-vsdoc.js

    This is a web site hosted by Microsoft.

    Note that if you need a newer version, say for jQuery 2.1.0, just change the version in above's path, i.e.:

    http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.0-vsdoc.js

    and the download instantly starts.

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