1.window.parent
当前窗口的上一级窗口,当前窗口可以是在iframe 中或是frameset 的一个frame中
2.window.top 当前窗口的最顶级窗口。
不管当前窗口是嵌了多少层或是通过iframe 或是frame嵌套,window.top 将返回最外层窗口。
说明:如果当前窗口不在iframe 或frame 中,window.top 或window.parent 将返回本窗口对象。
3.window.opener
通过window.opener方式打开当前窗口的窗口。
4.window.窗口名称
访问当前窗口的子窗口通过window的name 来访问。
举个简单的例子现在有a.htm,b.htm,c.htm,d.htm四个文件。
a.htm
无标题页
AAAAAAAAAAAA
b.htm
BBBBBBBB
function Show()
{
alert("B的parent窗口是:"+ window.parent.location.pathname);
alert("B的top窗口是:"+ window.top.location.pathname);
var a = window.parent;
alert("a的parent窗口是:"+ a.parent.location.pathname);
alert("a的top窗口是:"+ a.top.location.pathname);
var c = a.parent;
alert("c的parent窗口是:"+ c.parent.location.pathname);
alert("c的top窗口是:"+ c.top.location.pathname);
var d = window.top;
alert("d.cChild窗口是"+ d.cChild.location.pathname);
alert("a.bChild窗口是"+ a.bChild.location.pathname);
}
c.htm
CCCCCCCCCC
d.htm
通过浏览器访问d.htm就可以看出这几个窗口之间的关系。具体不在详述。
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
相关推荐: #yyds干货盘点#python实现中文和unicode转换
在 Python 中,可以使用 encode() 和 decode() 方法实现中文和 Unicode 编码之间的相互转换。 将中文转换为 Unicode 编码: chinese_str = “中文” unicode_str = chinese_str.enc…