应用程序清单适用于 android、iPhone、firefox、opera,但不适用于 iPad

发布于 2024-11-08 18:50:20 字数 745 浏览 0 评论 0原文

我无法让真正简单的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毅然前行 2024-11-15 18:50:20

我读到,在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文