//判断页面是否在iframe中,是的话就跳出iframe框,多用于登录页 ,将此段代码放到要做判断的页面上即可
if (window != top) { top.location.href = location.href; }
//判断页面是否在iframe中,是的话就跳出iframe框,多用于登录页 ,将此段代码放到要做判断的页面上即可
if (window != top) { top.location.href = location.href; }
原文:https://www.cnblogs.com/qqing/p/8143689.html