缓存不能正常工作

Cache does not work properly

我正在使用 HTML5 功能缓存清单,当我处于离线状态并尝试访问该网页时,它似乎无法正常工作。问题是它试图从 google 网站获取 jquery 库,尽管它应该被缓存。由于缺少 jquery 个库,网页无法正常工作 这是我的网页: http://www.tud.ttu.ee/web/Evald.Tali/movies/ 预计在离线时加载 offline.html

这是我的缓存文件:

CACHE MANIFEST
#updated on 22/2/2015 7:10PM
#updated cache, added links to jquery
CACHE:
index.html
CSSfile.css
script.js
jquery-1.11.2.min.js
jquery.mobile-1.4.5.js
jquery.mobile-1.4.5.css
offline.html
https://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.3/jquery.mobile.min.css
https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.3/jquery.mobile.min.js
OFFLINE:
/ /offline.html
NETWORK:
*

那是因为缓存只适用于同源资源。您不能在缓存清单中指定外部文件。有关详细信息,请参阅此处的答案:

App cache manifest on CDN?