0

我正在使用 jQuery 插件进行通知: http: //needim.github.com/noty/

这是我调用显示通知的方法的方式:

noty({force: true, timeout: false, text: 'Hello noty', type: 'information'});

代码工作正常,但是现在,在模态窗口中,我需要在关闭模态窗口后立即在打开器窗口中执行该调用......我想我应该使用 window.opener 但不知道如何为这种情况做。

4

1 回答 1

1

您可以在打开器窗口中定义一个 JS 函数:

function invokeSuccessNotification(msg){
        noty({force: true, timeout: false, text: 'Hello noty', type: 'information'});

    }

然后,在您的模态窗口中,像这样调用该方法:

window.opener.invokeSuccessNotification();
于 2012-07-17T03:15:51.913 回答