2011-05-18 64 views
3

我無法獲得真正簡單的HTML5緩存清單在iPad上工作。 但它在我測試過的所有其他設備和瀏覽器上都能正常工作。應用程序清單工作在Android,iPhone,火狐,歌劇,但不是在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> 

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: 
+0

你遇到的實際問題是什麼? – 2011-07-19 07:20:23

回答

0

我讀過,在iPad上的清單文件必須命名爲 「cache.manifest」,並且必須將其指定爲相對路徑如<html manifest="cache.manifest">不是類似於 <html manifest="/foo/bar/cache.manifest">。所以,如果iPad在其他所有方面都行得通,那麼請檢查/嘗試這兩件事。

相關問題