我是靠谱客的博主 爱笑寒风,最近开发中收集的这篇文章主要介绍h5页面定时跳转+读秒

概述

重要的就是标红的部分,实现定时刷新

<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>


最后

以上就是爱笑寒风为你收集整理的h5页面定时跳转+读秒 h5页面定时跳转+读秒 靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(65)

评论列表共有 0 条评论

立即
投稿
返回
顶部