Information about Jquery.min.map 404 (not Found) appears after the Chrome update
What the hell is this thing? Query, got the following information
- Official JQuery explanation
Extract the Content
There will be @ Sourcemappingurl=jquery.min.map in the original code after the JQuery 1.9.0 version
What is source map
Simply put, the Source map is an information file that stores the location information. That is, each position of the converted code, corresponding to the position before the conversion.
With it, when the error occurs, the Debug tool will display the original code directly, not the converted code. This has undoubtedly brought great convenience to the development.
Causes Jquery.min.map 404 Reasons
After the update, Chrome opens the option to enable source maps, but you don't have the source map to cause the file to be found.
Solutions
Solution Mode 1.
Set Developer Tools, Enable source maps to close
Solution Mode 2.
Download the same version of source maps with Jquery.js directory
Source maps will be in the same position as jquery
Jquery location Http://code.jquery.com/jquery-1.10.2.min.js
Source Maps Location Http://code.jquery.com/jquery-1.10.2.min.map
Jquery.min.map 404 (Not Found) causes of error and solutions