我是否需要在清单文件中添加托管在 CDN 上的文件以进行离线缓存?
这是一个示例清单文件
CACHE MANIFEST
#This is a comment
CACHE
index.html
style.css
NETWORK:
search.php
login.php
FALLBACK:
/api offline.html
但在我的项目中,我使用了一些托管在 cdn 上的文件
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b3/jquery.mobile-1.0b3.min.css" />
<script src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0b3/jquery.mobile-1.0b3.min.js"></script>
如何在清单文件中包含这些 cdn 文件?