什么是jquery.mobile-1.3.1发行版中jquery.mobile-1.3.1.min.map的目的?

use*_*652 13 jquery-mobile

当我下载jquery.mobile-1.3.1 dist时,我看到以下结构:

demos -> directory for demos of jquery-mobile
images -> directory of images 
index.html -> index for demos
jquery.mobile-1.3.1.css -> Uncompressed with Default theme
jquery.mobile-1.3.1.js -> Uncompressed
jquery.mobile-1.3.1.min.css -> Minified with Default theme
jquery.mobile-1.3.1.min.js -> Minified
jquery.mobile-1.3.1.min.map -> ?? (what it is for? is it necessary for min version?)
jquery.mobile.structure-1.3.1.css -> Uncompressed structure without a theme
jquery.mobile.structure-1.3.1.min.css -> Minified structure without a theme
jquery.mobile.theme-1.3.1.css -> Uncompressed theme for structure without theme (can be changed by another theme)
jquery.mobile.theme-1.3.1.min.css -> Minified theme for structure without theme (can be changed by another theme)
Run Code Online (Sandbox Code Playgroud)

正如你所看到的,我不知道jquery.mobile-1.3.1.min.map的目的,它的用途是什么?最小版本是否必要?

ale*_*exn 19

这是一张源地图.在调试缩小的JavaScript文件时使用它们.由于它仅用于调试目的,因此不是必需的.

我建议阅读JavaScript源地图简介.