window.location.href没有跳转
时间: 2023-11-29 08:47:02 浏览: 76
Vue 中 a标签上href无法跳转的解决方式
5星 · 资源好评率100%
当window.location.href没有跳转时,可能是由于以下原因之一导致的:
1.代码中没有正确设置window.location.href属性。
2.浏览器阻止了页面跳转。
3.在window.location.href后面加上了window.event.returnValue=false;,导致页面跳转被取消。
如果确定代码中正确设置了window.location.href属性,可以尝试在代码中删除window.event.returnValue=false;语句,或者将其注释掉,以允许页面跳转。
另外,如果需要在不同层级的页面之间进行跳转,可以使用不同的属性,如parent.location.href、top.location.href等。
阅读全文