How to reference jQuery in a web page

How to reference jQuery in a web page
It can be referenced through CDN (Content Delivery Network). jQuery is stored on both Google and Microsoft's servers.

Google CDN:

Copy code
The code is as follows:

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


Get the latest available version via Google CDN:

If you observe the URL on Google - the jQuery version (1.8.0) is specified in the URL. If you want the latest version of jQuery, you can either remove a number from the end of the version string (such as 1.8 in this case) and Google will return the latest available version in the 1.8 series (1.8.0, 1.8.1, and so on) or leave the first number alone and Google will return the latest available version in the 1 series (from 1.1.0 to 1.9.9).

Microsoft CDN:

Copy code
The code is as follows:

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

Using jQuery from Google or Microsoft has one big advantage:

Many users have already loaded jQuery from Google or Microsoft when visiting other sites. All the result is that when they visit your site, jQuery will be loaded from cache, which should reduce loading times. At the same time, most CDNs can ensure that when a user requests a file, a response is returned from the server closest to the user, which can also increase loading speed.

<<:  CSS implements six adaptive two-column layout methods

>>:  Detailed tutorial of using stimulsoft.reports.js with vue-cli

Recommend

Vue implements form data validation example code

Add rules to the el-form form: Define rules in da...

Docker completely deletes private library images

First, let’s take a look at the general practices...

Docker Nginx container production and deployment implementation method

Quick Start 1. Find the nginx image on Docker Hub...

CSS to achieve dynamic secondary menu

Dynamically implement a simple secondary menu Whe...

Share MySql8.0.19 installation pit record

The previous article introduced the installation ...

Common pitfalls of using React Hooks

React Hooks is a new feature introduced in React ...

The implementation process of Linux process network traffic statistics

Preface Linux has corresponding open source tools...

How to implement one-click deployment of nfs in linux

Server Information Management server: m01 172.16....

VMware vSAN Getting Started Summary

1. Background 1. Briefly introduce the shared sto...

JavaScript code to achieve a simple calendar effect

This article shares the specific code for JavaScr...

Detailed tutorial of using stimulsoft.reports.js with vue-cli

vue-cli uses stimulsoft.reports.js (nanny-level t...