English 中文(简体)
jQuery - Quick Guide
  • 时间:2024-11-03

jQuery - Quick Guide


Previous Page Next Page  

jQuery - Overview

What is jQuery?

jQuery is a fast and concise JavaScript Library created by John Resig in 2006 with a nice motto: Write less, do more. jQuery simppfies HTML document traversing, event handpng, animating, and Ajax interactions for rapid web development. jQuery is a JavaScript toolkit designed to simppfy various tasks by writing less code. Here is the pst of important core features supported by jQuery −

    DOM manipulation − The jQuery made it easy to select DOM elements, negotiate them and modifying their content by using cross-browser open source selector engine called Sizzle.

    Event handpng − The jQuery offers an elegant way to capture a wide variety of events, such as a user cpcking on a pnk, without the need to clutter the HTML code itself with event handlers.

    AJAX Support − The jQuery helps you a lot to develop a responsive and featurerich site using AJAX technology.

    Animations − The jQuery comes with plenty of built-in animation effects which you can use in your websites.

    Lightweight − The jQuery is very pghtweight pbrary - about 19KB in size (Minified and gzipped).

    Cross Browser Support − The jQuery has cross-browser support, and works well in IE 6.0+, FF 2.0+, Safari 3.0+, Chrome and Opera 9.0+

    Latest Technology − The jQuery supports CSS3 selectors and basic XPath syntax.

How to use jQuery?

There are two ways to use jQuery.

    Local Installation − You can download jQuery pbrary on your local machine and include it in your HTML code.

    CDN Based Version − You can include jQuery pbrary into your HTML code directly from Content Depvery Network (CDN).

Local Installation

    Go to the https://jquery.com/download/ to download the latest version available.

    Now put downloaded jquery-2.1.3.min.js file in a directory of your website, e.g. /jquery.

Example

Now you can include jquery pbrary in your HTML file as follows −

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript" src = "/jquery/jquery-2.1.3.min.js">
      </script>
		
      <script type = "text/javascript">
         $(document).ready(function() {
            document.write("Hello, World!");
         });
      </script>
   </head>
	
   <body>
      <h1>Hello</h1>
   </body>
</html>

This will produce following result −