欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

window.location.href和window.top.location.href的区别

程序员文章站 2022-11-21 20:32:19
if (window.location.href == window.top.location.href) { window.top.location.href = "/index.html"; } top.window.location.reload即刷新父级页面 中top是指父框架的对象 使用情 ......

if (window.location.href == window.top.location.href) {     window.top.location.href = "/index.html"; }

top.window.location.reload即刷新父级页面  中top是指父框架的对象

使用情况一般是有嵌套iframe 其iframe的父页面为本<html><iframe src='2.htm'></iframe> <html>

 

2. 也就是 如果iframe中的 2.htm 里面 使用了: top.window.location.reload 那么就是 刷新父页面

    如果2.htm里面使用的是: window.location.reload 那就是 刷新框架 自身页面 即iframe中的页面