AJax技术

jQuery Get Started

字号+ 作者:H5之家 来源:H5之家 2017-03-24 12:03 我要评论( )

Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, PHP, and XML.

jQuery Get Started

Previous Next Chapter

Adding jQuery to Your Web Pages

There are several ways to start using jQuery on your web site. You can:

  • Download the jQuery library from jQuery.com
  • Include jQuery from a CDN, like Google
  • Downloading jQuery

    There are two versions of jQuery available for downloading:

  • Production version - this is for your live website because it has been minified and compressed
  • Development version - this is for testing and development (uncompressed and readable code)
  • Both versions can be downloaded from jQuery.com.

    The jQuery library is a single JavaScript file, and you reference it with the HTML <script> tag (notice that the <script> tag should be inside the <head> section):

    <head>
    <script src="jquery-1.12.2.min.js"></script>
    </head>

    Tip: Place the downloaded file in the same directory as the pages where you wish to use it.

    Do you wonder why we do not have type="text/javascript" inside the <script> tag?

    This is not required in HTML5. JavaScript is the default scripting language in HTML5 and in all modern browsers!

    jQuery CDN

    If you don't want to download and host jQuery yourself, you can include it from a CDN (Content Delivery Network).

    Both Google and Microsoft host jQuery.

    To use jQuery from Google or Microsoft, use one of the following:

    Google CDN:

    <head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
    </head>

    Try it Yourself »

    Microsoft CDN:

    <head>
    <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.2.min.js"></script>
    </head>

    Try it Yourself »

    One big advantage of using the hosted jQuery from Google or Microsoft:

    Many users already have downloaded jQuery from Google or Microsoft when visiting another site. As a result, it will be loaded from cache when they visit your site, which leads to faster loading time. Also, most CDN's will make sure that once a user requests a file from it, it will be served from the server closest to them, which also leads to faster loading time.


    Previous Next Chapter

    Sponsored Links


    2016-2017 W3ii.com. All Rights Reserved. Email: jacklee8902@gmail.com



     

    1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

    相关文章
    • AJAX PHP Example

      AJAX PHP Example

      2017-03-24 10:00

    • JavaScript学习指南下载 PDF高清版

      JavaScript学习指南下载 PDF高清版

      2017-03-23 10:04

    • 轻松理解JavaScript之AJAX

      轻松理解JavaScript之AJAX

      2017-03-20 13:03

    • ajax技术 load方法

      ajax技术 load方法

      2017-03-20 09:00

    网友点评
    s