我在线学习JavaScript和Html 5并执行我在localhost上学到的代码。最近我在html标签中学习了manifest属性,这是Html 5中的一个新功能。然后我创建了自己的.appcache文件,问题就开始了。即使我已连接到互联网,也会使用存储在我的计算机中的缓存。这是index.php文件(但代码中没有php):
<html manifest="./cevrimdisi.appcache">
<head>
<meta charset="UTF-8">
<title>BAŞLIK</title>
</head>
<body>
<font id="demo">Kutay</font>
<script>
document.getElementById("demo").style.color="blue";
</script>
</body>
</html>
cevrimdisi.appcache:
CACHE MANIFEST
# 09/09/2013
CACHE:
index.php
FALLBACK:
cevrimdisi.html
NETWORK:
*
的.htaccess
AddType text/cache-manifest .appcache
答案 0 :(得分:1)
即使浏览器具有互联网连接,也将使用缓存。只有三种方法来更新缓存
此处有更多信息
http://www.html5rocks.com/en/tutorials/appcache/beginner/#toc-updating-cache