JS识别当前URL,延迟5秒后跳转到特定页面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS识别当前URL,延迟5秒后跳转到特定页面相关的知识,希望对你有一定的参考价值。
var thisurl=window.location.href;
if (thisurl.indexOf("aaa")!=-1)
window.location.href="bbb.html";
;
以上JS代码是打开包含aaa的URL即时跳转到bbb.html,如何改为延迟5秒后再跳转到bbb.html?
看不懂,可以追问我。 参考技术B var thisurl=window.location.href;
if (thisurl.indexOf("aaa")!=-1)
window.setTimeout(function()window.location.href="bbb.html",5000);
;本回答被提问者和网友采纳
页面定时跳转
需求:客户端请求服务器,服务器重定向到一个新的页面,页面内容是3秒后跳转到另一个页面后端写法:设置响应头
response.setHeader("refresh","3/url=/项目名/资源")
前端
设置http的头
<meta http-equiv="refresh" content="3;url=/项目名/资源">
效果:
引入JQ的类库 :<script type="text/javascript" src="../js/jquery-1.11.3.min.js"></script>
<script type="text/javascript">
$(function(){
设置定时器,每个1秒执行一次,让数字3减少1
window.setInterval("changeNum()", 1000);
});
// 修改数字3
var x = 2;
function changeNum(){
x--;
$("#spanId").html(x);
}
</script>
<h3>页面将在<span id="spanId">3</span>秒钟后进行跳转</h3>
以上是关于JS识别当前URL,延迟5秒后跳转到特定页面的主要内容,如果未能解决你的问题,请参考以下文章