在html5中使用manifest属性

时间:2012-02-16 08:05:04

标签: html5 manifest

从我的用户那里,

<html manifest="test.appcache" xmlns="http://www.w3.org/1999/xhtml">

这是关于如何使用manifest属性的示例。

CACHE MANIFEST

CACHE:
# Offline cache v2
# html files
index.html

# css files
styles.css

# js files
main.js

以上是清单文件的示例。

但是,当我尝试从iTouch运行它时,缓存无效。

我只想询问服务器是否影响某些html5属性是否有效?因为我使用的服务器已经很老了。

提前致谢

1 个答案:

答案 0 :(得分:1)

您必须确保服务器提供MIME类型为

的清单文件
text/cache-manifest

这可以通过添加

来完成(假设你正在使用apache)
AddType text/cache-manifest .appcache

到清单所在目录中的.htaccess文件。