引用方法top 该变量永远指分割窗口最高层次的浏览器窗口如果计划从分割窗口的最高层次开始执行命令就可以用top变量
parent
该变量指的是包含当前分割窗口的父窗口如果在一个窗口内有分割窗口而在其中一个分割窗口中又包含着分割窗口则第层的分割窗口可以用parent变量引用包含它的父分割窗口
附Window对象Parent对象Frame对象Document对象和Form对象的阶层关系
Windwo对象→Parent对象→Frame对象→Document对象→Form对象如下
parentframedocumentforms[]elements[]value;
在JS中windowlocation(windowlocationhref)和windowtoplocation(windowtoplocationhref)是一样的意思 可以通过top来调用任何一个frame因为top指的是最外层的frameset可以调用它里面的任何一个子元素frame如topoutterFramelocation和topinnerFramelocation等
parent指的是当前窗口(frame)的父窗口(frameset)可以调用它里面的任何一个子元素frame如parentinnerFramelocation和parentinnerFramelocation等
复制代码 代码如下:
<html>
<head>
<title>top frame parent示例</title>
<script language=javaScript type=text/javaScript>
windowlocation;
</script>
</head>
<frameset id=outFrameset rows=* cols=* border=>
<frame name=frameName id=frameId src=l>
<frameset id=inFrameset cols=* rows=*>
<frame name=innerFrameName id=innerFrameId src=l>
<frame name=innerFrameName id=innerFrameId src=l>
</frameset>
<frame name=frameName id=frameId src=l>
</frameset>
</html>