引用方法top 該變量永遠指分割窗口最高層次的浏覽器窗口
如果計劃從分割窗口的最高層次開始執行命令
就可以用top變量
parent 該變量指的是包含當前分割窗口的父窗口
如果在一個窗口內有分割窗口
而在其中一個分割窗口中又包含著分割窗口
則第
層的分割窗口可以用parent變量引用包含它的父分割窗口
附
Window對象
Parent對象
Frame對象
Document對象和Form對象的階層關系
Windwo對象→Parent對象→Frame對象→Document對象→Form對象
如下
parent
frame
document
forms[
]
elements[
]
value;
在JS中
window
location(window
location
href)和window
top
location(window
top
location
href)是一樣的意思 可以通過top來調用任何一個frame
因為top指的是最外層的frameset
可以調用它裡面的任何一個子元素frame
如
top
outterFrame
location和top
innerFrame
location等
parent指的是當前窗口(frame)的父窗口(frameset)可以調用它裡面的任何一個子元素frame
如
parent
innerFrame
location和parent
innerFrame
location等
復制代碼 代碼如下:
<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>
From:http://tw.wingwit.com/Article/program/Java/Javascript/201401/30273.html