您的位置:首页 > 运维架构

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

2017-06-09 16:49 387 查看
if (window.location.href == window.top.location.href) {     window.top.location.href = "/index.html"; }

top.window.location.reload 中top是什么意思 父框架的对象

比如 有网页  1.htm  <span id='str'>显示内容1</span> <iframe src='2.htm'></iframe> 

2.htm  <input type='button' value='改变显示内容' onclick="top.document.getElementById('str').innerHTML='显示内容2222222';" />

  也就是 如果 2.htm 里面 使用了: top.window.location.reload 那么就是 刷新父页面 1.htm 如果2.htm里面使用的是: window.location.reload 那就是 刷新框架 2.htm    父页面1.htm  不改变
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  window.location.href
相关文章推荐