Window parent 屬性

2018-10-18 15:57 更新

Window parent 屬性

Window 對象參考手冊 Window 對象

定義和用法

parent屬性返回當(dāng)前窗口的父窗口。

語法

window.parent


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 parent 屬性


實例

實例

當(dāng)打開新窗口時,在父窗口彈出警告:

<!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 對象參考手冊 Window 對象


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號