熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Javascript >> 正文

js中top/parent/frame概述及案例應用

2022-06-13   來源: Javascript 
引用方法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可以調用它裡面的任何一個子元素frametopoutterFramelocation和topinnerFramelocation等

parent指的是當前窗口(frame)的父窗口(frameset)可以調用它裡面的任何一個子元素frameparentinnerFramelocation和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>


From:http://tw.wingwit.com/Article/program/Java/Javascript/201401/30273.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.