html制作,网页刷新次数
发布网友
发布时间:2022-04-21 18:47
我来回答
共5个回答
热心网友
时间:2022-04-21 20:17
<!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>
热心网友
时间:2022-04-21 21:35
<!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的站点目录下
热心网友
时间:2022-04-21 23:09
这个需要一种后台语言来配合了。因为你要有一个定值,当刷新页面的时候给服务器上这个定值修改才可以
热心网友
时间:2022-04-22 01:01
用JavaScript记录一下不就知道了嘛
热心网友
时间:2022-04-22 03:09
您这个问题不知道能否问清楚一点呢?