How to reload Main Page from within an iFrame

后端 未结 7 6401
死守一世寂寞
死守一世寂寞 2020-12-04 13:54

Within my scenario, I have a button within an iframe section of my page that performs some database processing.

What I need is a means of performing a page refresh o

7条回答
  •  天命终不由人
    2020-12-04 14:39

    define allFrame variable on your top frame:

    var allFrame=1
    

    and on all your frames check this function

    if(top.allFrame === undefined)
    {
        window.parent.location = "your website top frame";
    }
    

提交回复
热议问题