我正在使用以下脚本强制页面仅在iframe中加载
<script type="text/javascript">
if (frameElement == null) {
//change location or close
window.location = "http://site.com/";
// or window.close();
}
</script>
它在ie和firefox中工作得很好,但在chrome和safari中却没有 这个浏览器的任何解决方案?
答案 0 :(得分:1)
请尝试if (top == window)
。