我尝试执行 w3schools 中已经存在的以下一组编码
index.html 具有以下编码
<!DOCTYPE html>
<html manifest="demo_html.appcache">
<body>
<script src="demo_time.js"></script>
<p id="timePara"><button onclick="getDateTime()">Get Date and Time</button></p>
<p><img src="logo.jpeg" width="336" height="69"></p>
<p>Try opening <a href="index.html" target="_blank">this page</a>, then go offline, and reload the page. The script and the image should still work.</p>
</body>
</html>
demo_time.js 包含以下内容
function getDateTime()
{
var d=new Date();
document.getElementById('timePara').innerHTML=d;
}
demo_html.appcache 包含以下内容
CACHE MANIFEST
CACHE:
/index.html
/demo_time.js
/logo.jpeg
“.htaccess”文件包含以下内容
AddType text/cache-manifest .appcache
请指出此代码中的错误。当我在浏览器中执行代码时,firefox 提示我此网站要求将数据存储在您的计算机上以供离线使用。允许,永远不要为这个网站或现在不。我选择了允许,但即使在那时,提示也没有消失。
当我在 w3schools.com 中尝试相同操作时,单击“允许”后提示消失了。请指出上面代码中的错误