应用程序清单适用于 android、iPhone、firefox、opera,但不适用于 iPad
我无法让真正简单的 html5 缓存清单在 iPad 上运行。 不过,它确实适用于我测试过的所有其他设备和浏览器。
iPad safari 实施中是否存在任何错误或 iPad 的其他限制,或者我是否遗漏了某些内容?
我将包含相关的源文件。
index.html
<!DOCTYPE HTML>
<html manifest="example.appcache">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Hello</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
示例.manifest
CACHE MANIFEST
# 2010-06-18:v2
# Explicitly cached 'master entries'.
CACHE:
index.html
style.css
# Resources that require the user to be online.
NETWORK:
I'm having trouble getting a real simple html5 cache manifest to work on the iPad.
It does however work on all other devices and browsers I've tested.
Are there any bugs in the iPad safari implementation or other limitations to the iPad or am I missing something ?
I'll include the relevant source files.
index.html
<!DOCTYPE HTML>
<html manifest="example.appcache">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Hello</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
example.manifest
CACHE MANIFEST
# 2010-06-18:v2
# Explicitly cached 'master entries'.
CACHE:
index.html
style.css
# Resources that require the user to be online.
NETWORK:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我读到,在 iPad 上,清单文件必须命名为“cache.manifest”,并且您必须将其指定为相对路径,如
和 < em>不是类似的东西
。因此,如果它在其他所有设备上都可以工作,但在 iPad 上却不行,请检查/尝试这两件事。
I've read that on iPad the manifest file must be named "cache.manifest" and that you must specify it as a relative path like
<html manifest="cache.manifest">
and not something like<html manifest="/foo/bar/cache.manifest">
. So, if it's working in everything else but just no in the iPad, check/try those two things.