重要的就是标红的部分,实现定时刷新
<meta http-equiv="refresh" content="5;http://www.baidu.com">
5 表示5秒后刷新
分号后面的url表示5秒后将要跳转的地址
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="refresh" content="5;http://www.baidu.com">
<title>Insert title here</title>
</head>
<body οnlοad="run()">
<span id="count">5</span>后,跳转...
<script type="text/javascript">
var count =5
function run(){
document.getElementById("count").innerHTML = count
setTimeout("run()",1000)
count--;
}
</script>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="refresh" content="5;http://www.baidu.com">
<title>Insert title here</title>
</head>
<body οnlοad="run()">
<span id="count">5</span>后,跳转...
<script type="text/javascript">
var count =5
function run(){
document.getElementById("count").innerHTML = count
setTimeout("run()",1000)
count--;
}
</script>
</body>
</html>
最后
以上就是爱笑寒风为你收集整理的h5页面定时跳转+读秒 h5页面定时跳转+读秒 靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复