Check if parent window is iframe or not

后端 未结 3 612
醉梦人生
醉梦人生 2020-11-29 21:48

How can I tell from a page within an iframe, if the parent itself is also within an iframe?

Explanation:

My home page home.ht

3条回答
  •  天涯浪人
    2020-11-29 21:54

    var isInIFrame = (window.location != window.parent.location);
    if(isInIFrame==true){
        // iframe
    }
    else {
        // no iframe
    }
    

提交回复
热议问题