js 5秒后跳转至指定页面
时间:2023年10月23日
/来源:网络
/编辑:佚名
分析:
1、需要跳转,则要用到 location对象的href属性。
2、倒计时5秒需要使用定时器 setInterval。
HTML:
<div id="msg"></div>
JavaScript:
window.onload=function(){
var div=document.getElementById("msg");
var time=5;
var timer=setInterval(function(){
if(time==0){
location.href="https://www.78moban.com";
}else{
div.innerHTML="将在 "+time+" 秒后跳转";
time--;
}
},1000)
}
1、需要跳转,则要用到 location对象的href属性。
2、倒计时5秒需要使用定时器 setInterval。
HTML:
<div id="msg"></div>
JavaScript:
window.onload=function(){
var div=document.getElementById("msg");
var time=5;
var timer=setInterval(function(){
if(time==0){
location.href="https://www.78moban.com";
}else{
div.innerHTML="将在 "+time+" 秒后跳转";
time--;
}
},1000)
}
新闻资讯 更多
- 【建站知识】查询nginx日志状态码大于400的请求并打印整行04-03
- 【建站知识】Python中的logger和handler到底是个什么?04-03
- 【建站知识】python3拉勾网爬虫之(您操作太频繁,请稍后访问)04-03
- 【建站知识】xpath 获取meta里的keywords及description的方法04-03
- 【建站知识】python向上取整以50为界04-03
- 【建站知识】scrapy xpath遇见乱码解决04-03
- 【建站知识】scrapy爬取后中文乱码,解决word转为html 时cp1252编码问题04-03
- 【建站知识】scrapy采集—爬取中文乱码,gb2312转为utf-804-03