Javascript 参考手册

HTML DOM 对象

Window parent 属性

Window 对象

定义和用法

parent属性返回当前窗口的父窗口。

语法

window.parent

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 parent 属性

实例

实例

当打开新窗口时,在父窗口弹出警告:

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>W3Cschool教程(w3cschool.cn)</title>

</head>

<head>

<script>

function openWin(){

    window.open('','','width=200,height=100');

    alert(window.parent.location);

}

</script>

</head>

<body>


<input type="button" value="打开窗口" onclick="openWin()">


</body>

</html>
尝试一下 »

Window 对象

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号