当前位置: 首页 > 网络学院 > 客户端脚本教程 > HTML DOM > HTML DOM top 属性
The top property returns the topmost ancestor window.
top 属性可设置或获取对象相对于文档层次中下个定位对象的上边界的位置。
window.top |
<html> <head> <script type="text/javascript"> function breakout() { if (window.top!=window.self) { window.top.location="tryjs_breakout.htm" } } </script> </head> <body> <form> Click the button to break out of the frame: <input type="button" onclick="breakout()" value="Break out!"> </form> </body> </html> |
Break out of a frame
从框架中脱离
Resize a window
重设定窗口大小
Resize a window to a specified size
指定设定窗口的大小