js中 window.location.href 怎样可以不断地跳转
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中 window.location.href 怎样可以不断地跳转相关的知识,希望对你有一定的参考价值。
就是每隔1秒跳转到另一个页面
<script>;
var i = 0;
var tid;
function doit()
clearTimeout(tid);
window.location.href= i+".txt";
i++;
if(i<4) tid = setTimeout(doit,1000);
tid = setTimeout(doit,1000)
</script>
为何不行
你这个要是改成window.open的,打开窗口的,可以这么一直弹~~~
或者你自己跳转到自己,或者跳转到的那个页面也有类似的代码能继续跳转~~~
js中top.location.hrefparent.location.href用法
window.location.href、location.href是本页面跳转
parent.location.href是上一层页面跳转
top.location.href是最外层的页面跳转
举例说明:
window.location.href、location.href:
例:
代码如下 | 复制代码 |
window.location.href= ‘wapsend1.asp?zimu=A&rev= ‘ + form1.rev.value ; |
parent.location.href:C页面跳转
例:
代码如下 | 复制代码 |
window.parent.parent.location.href=“你定义要跳转的页面” |
top.location.href:A页面跳转
例:
在form提交表单的时候有个属性可能对上面的(2)的情况有用target=_top
代码如下 | 复制代码 |
<form name=loginForm action=Login.action method=post target=_top> </form> |
例2
代码如下 | 复制代码 |
echo <iframe width=0 height=0 frameborder=0 scrolling=auto src=‘登录论坛‘ onload=‘reurl()‘></iframe>; |
也可以直接在表单提交是的target加个即可
<form>: form提交后D页面跳转
<form target=_blank>: form提交后弹出新页面
<form target=_parent>: form提交后C页面跳转
--------------------- 本文来自 z18842589113 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/z18842589113/article/details/53316287?utm_source=copy
以上是关于js中 window.location.href 怎样可以不断地跳转的主要内容,如果未能解决你的问题,请参考以下文章
js中top.location.hrefparent.location.href用法
window.location.href和window.open的几种用法和区别
window.location.href 放置在单独的JS文件中使用时问题