top.window.location.reload 中top是什么意思 父框架的对象  比如 有网页  1.htm  <span id='str'>显示内容1</span> <iframe src='2.htm'></iframe>  2.htm  <input type='button' value='改变显示内容' οnclick="top.document.getElementById('str').innerHTML='显示内容2222222';" />  也就是 如果 2.htm 里面 使用了: top.window.location.reload 那么就是刷新父页面 1.htm 如果2.htm里面使用的是: window.location.reload 那就是 刷新框架 2.htm 父页面1.htm不改变