当前位置: 代码迷 >> 综合 >> html或jsp页面跳转
  详细解决方案

html或jsp页面跳转

热度:90   发布时间:2023-09-18 21:11:58.0

1、跳出<iframe>页面

跳到最外层页面:top.location.href="url"

2、其他

本层页面跳转:window.location.href="url"或location.href="url"

跳到上一层:parent.location.href="url"

 

  相关解决方案