Google Ajax library API

Source: Internet
Author: User
Google's Ajax libraries API has been released on the http://code.google.com/apis, Google Ajax library itself is just a content delivery network (Content Distribution Network) and the popular JavaScript Library Loading framework (loading architecture for the most popular open source JavaScript libraries ).

We know that typical Ajax databases have hundreds of K or hundreds of K sizes, and the loading speed is very high. Google Ajax library API puts popular JavaScript libraries on your own server, allowing you to directly use Google server resources to save your network bandwidth and cache and compress these libraries, therefore, it can accelerate the loading of Ajax libraries and improve user experience.

Currently, JavaScript frameworks integrated with Google Ajax library APIs include:

  • Jquery
  • Prototype
  • Script. aculo. Us
  • Mootools
  • Dojo

    simple example of Google Ajax library API:

    script SRC = "http://www.google.com/jsapi" script
    script
    // load jquery
    Google . load ( "jquery "" , "1" );

    // On page load complete, fire off a jquery JSON-P Query
    // Against Google Web Search
    Google.Setonloadcallback(Function() {
    $.Getjson("Http://ajax.googleapis.com/ajax/services/search/web? Q = Google &; V = 1.0 &; callback =? ",

    // On search completion, process the results
    Function ( Data ) {
    If ( Data . Responsedate . Results &&
    Data . Responsedate . Results . Length > 0 ) {
    Renderresults ( Data . Responsedate . Results );
    }
    });
    });
    </ Script >

    Reference: http://code.google.com/apis/ajaxlibs/

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.