html制作,网页刷新次数

如何记录并显示网页刷新次数?

第1个回答  2014-05-11
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>a.html</title>
<script type="text/javascript">
window.onload = function ()
    {
    if (!!window.localStorage)
    {
    if (!window.localStorage.access)
    {
    window.localStorage.access = 1;
    }
    else
    {
    window.localStorage.access++;
    }
    document.getElementsByTagName('div')[0].innerText = window.localStorage.access;
    }
    else
    {
    alert ('This browser does NOT support localStorage');
    }
    }
</script>
</head>
<body>
you have access the page <div></div> times.
</body>
</html>

追问

if (!!window.localStorage)
if (!window.localStorage.access)

追答

what happend?

追问

if (!!window.localStorage)
if (!window.localStorage.access)
什么意思?

追答

oh, it means check the localStorage is defined or not

追问

请说中文

用IE浏览器打开不行,显示This browser does NOT support localStorage

追答baby, take this. it will be fine on IE


第2个回答  2014-05-13
<!DOCTYPE html>
<html lang="zh">
<head></head>
<body>
<div id="showNum">0</div>
<script>
(function(){
document.getElementById('showNum').innerHTML = document.cookie.split('=')[1];
var n=parseInt(document.getElementById('showNum').innerHTML);
n++;
document.cookie = "flash="+n;
})()
</script>
</body>
</html>

用cookie,第一次打开为0,刷新一次改次cookie.

追问

显示undefined

追答

你把html放到iis或者apache的站点目录下

第3个回答  2014-05-21
这个需要一种后台语言来配合了。因为你要有一个定值,当刷新页面的时候给服务器上这个定值修改才可以
第4个回答  2014-05-11
用JavaScript记录一下不就知道了嘛
第5个回答  2014-05-11
您这个问题不知道能否问清楚一点呢?
相似回答