Window self 屬性
Window 對(duì)象定義和用法
self 屬性可返回對(duì)窗口自身的只讀引用。
語法
window.self
瀏覽器支持
所有主要瀏覽器都支持 self 屬性
實(shí)例
實(shí)例
當(dāng)點(diǎn)擊"Check window"按鈕,check()被調(diào)用,并檢查當(dāng)前窗口的狀態(tài):
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool教程(w3cschool.cn)</title>
<script>
function check(){
if (window.top!=window.self) {
document.write("<p>這個(gè)窗口不是最頂層窗口!我在一個(gè)框架?</p>")
}
else{
document.write("<p>這個(gè)窗口是最頂層窗口!</p>")
}
}
</script>
</head>
<body>
<input type="button" onclick="check()" value="檢查窗口">
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool教程(w3cschool.cn)</title>
<script>
function check(){
if (window.top!=window.self) {
document.write("<p>這個(gè)窗口不是最頂層窗口!我在一個(gè)框架?</p>")
}
else{
document.write("<p>這個(gè)窗口是最頂層窗口!</p>")
}
}
</script>
</head>
<body>
<input type="button" onclick="check()" value="檢查窗口">
</body>
</html>
嘗試一下 ?
Window 對(duì)象
更多建議: