Home >Web Front-end >JS Tutorial >Is There a Specific Link for the \'Latest\' jQuery Version on Google APIs?
Question:
Developers commonly utilize a specific URL for jQuery's CDN on Google APIs like this:
http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js
Is there a similar link that provides access to the "latest" version of jQuery? Developers would like a URL like this:
http://ajax.googleapis.com/ajax/libs/jquery/latest/jquery.js
Answer:
Up to jQuery 1.11.1:
Prior to jQuery 1.11.1, you could indeed use the following URLs to obtain the latest version:
From jQuery 1.11.1 Onwards:
However, beginning with jQuery 1.11.1, both jQuery and Google ceased updating these URLs. They now permanently point to version 1.11.1. Therefore, there is no longer an officially supported URL for accessing the latest version of jQuery.
For an explanation of this decision, please refer to the blog post "Don't use jquery-latest.js."
Additional Notes:
The above is the detailed content of Is There a Specific Link for the \'Latest\' jQuery Version on Google APIs?. For more information, please follow other related articles on the PHP Chinese website!