HTML DOM self 属性
JavaScript基础 2022-06-08 14:58:30小码哥的IT人生shichen
HTML DOM self 属性
定义和用法
self 属性可返回对窗口自身的只读引用。等价于 Window 属性。
语法
window.self
实例
下面的例子窗口是否在一个框架中,如果是,则跳出框架:
<html>
<head>
<script type="text/javascript">
function breakout()
{
if (window.top!=window.self
)
{
window.top.location="tryjs_breakout.htm"
}
}
</script>
</head>
<body>
<input type="button" onclick="breakout()"
value="Break out of frame!">
</body>
</html>
TIY
完整实例【跳出框架】:
<html>
<head>
<script type="text/javascript">
function breakout()
{
if (window.top!=window.self)
{
window.top.location="/demo/example/hdom/tryjs_breakout.htm"
}
}
</script>
</head>
<body>
<input type="button" onclick="breakout()" value="跳出框架!">
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html