简单教程
提交运行
代码编辑器:
<script> function check(){ if (window.top!=window.self) { document.write("<p>这个窗口不是最顶层窗口!我在一个框架?</p>") } else{ document.write("<p>这个窗口是最顶层窗口!</p>") } } </script> <input type="button" onclick="check()" value="检查窗口">
运行结果: