实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function breakout()
6
{
7
if (window.top!=window.self) 
8
  {
9
  window.top.location="/study/api/s/2070";
10
  }
11
}
12
</script>
13
</head>
14
<body>
15
16
<input type="button" onclick="breakout()" value="Break out of frame!">
17
18
</body>
19
</html>