Close javascript-popup-window from anywhere

后端 未结 3 1184
广开言路
广开言路 2021-01-28 21:43

I\'m trying to build a popup that can be closed from anywhere.

On the Mainpage you have the option to open it. At any point while browsing the mainpage the user shall be

3条回答
  •  甜味超标
    2021-01-28 22:04

    If you are trying to close it from an iframe...

    top.my_window.close();
    

    I believe you need to go out a level since that variable is set on the parent window. Not in the iframe.

提交回复
热议问题