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

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  不改变

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据