如何在加载任何 NyroModal 对话框时执行一些 Javascript 代码

发布于 2024-11-10 08:56:26 字数 99 浏览 0 评论 0原文

我有一些常见的 Javascript,我想在打开任何 NyroModal 对话框时执行它们。

如何为 NyroModal 组件的“加载”(或其他)事件分配事件处理程序?

I have some common Javascript which I would like to execute on the event of any NyroModal dialog being opened.

How do I assign an event handler for, say, the 'on load' (or whatever) event of the NyroModal component?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

场罚期间 2024-11-17 08:56:26

您必须在回调设置中设置 afterShowCont,例如:

$.nmObj({
    callbacks: {
        afterShowCont: function(nm) {
            alert('Handled!');
        }
    }
});

或者,您可以在自定义过滤器中定义它,例如:

$.nmFilters({
    custom: {
        afterShowCont: function(nm) {
            alert('Handled!');
        }
    }
});

或者您可以在启动 nyroModal 元素时定义它:

$('.nyroModal').nyroModal({
    callbacks: {
        afterShowCont: function(nm) {
            alert('Handled!');
        }
    }
});

NB:所有这些解决方案与 nyroModal V2 一起使用。

You have to set the afterShowCont inside a callbacks settingslike:

$.nmObj({
    callbacks: {
        afterShowCont: function(nm) {
            alert('Handled!');
        }
    }
});

Or, you can define it in the custum filter like:

$.nmFilters({
    custom: {
        afterShowCont: function(nm) {
            alert('Handled!');
        }
    }
});

Or you can define it when you're initiating the nyroModal elements:

$('.nyroModal').nyroModal({
    callbacks: {
        afterShowCont: function(nm) {
            alert('Handled!');
        }
    }
});

NB : all of these solutions work with nyroModal V2.

你的心境我的脸 2024-11-17 08:56:26

NyroModal 的所有事件处理程序都可以在其“选项”对象中设置,您可以使用“$.nmObj”函数进行设置(通过传递包含要设置的键/值的对象)。

要处理弹出窗口的加载,您可能需要“afterShowCont”处理程序:

$.nmObj({
    callbacks: {
        afterShowCont: function(nm) {
            alert('Handled!');
        }
    }
});

请在此处查看完整的事件列表:http://nyromodal.nyrodev.com/#filters

注意:“nm”参数将包含 NyroModal 对象的实例,它允许您更改内容、操作 NyroModal 等。

All of the NyroModal's event handlers can be set in its 'options' object, which you can set using the '$.nmObj' function (by passing an object containing the keys/values you want to set).

To handle the on-load of a popup, you probably want the 'afterShowCont' handler:

$.nmObj({
    callbacks: {
        afterShowCont: function(nm) {
            alert('Handled!');
        }
    }
});

See a full list of events here: http://nyromodal.nyrodev.com/#filters

Note: The 'nm' parameter will contain an instance of the NyroModal object, which allows you to alter the content, manipulate the NyroModal, etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文