加载 jqmodal 对话框时如何分配 Ajax 成功处理程序?

发布于 2024-08-14 18:38:52 字数 467 浏览 3 评论 0原文

我需要的很简单,但是在网上搜索,我没有找到任何例子。

我正在使用 jqModal jQuery 插件在模式对话框中动态显示内容(通过 Ajax)。加载此模式内容后,我需要在对话框 DOM 元素上绑定一些事件。因此,我想为“成功”AJAX 事件分配一个处理程序来操作这些 DOM 元素。

问题是,查看 jqModal 文档,没有“成功”定义的事件。例如,代码:

$('#ex2').jqm({ajax: 'examples/2.html', trigger: 'a.ex2trigger'});

将调用 Ajax 请求的 examples/2.html ,响应内容将替换 ex2 内容......

但是我该如何定义成功(或错误)的处理程序,以便我可以在 '#ex2' 的新内容上绑定一些事件?

预先感谢您的帮助,

法比安。

What I need is very simple but, searching the web, I didn't find any example.

I am using the jqModal jQuery plugin for displaying content dynamically (via Ajax) in a modal dialog. Once, this modal content is loaded, I need to bind some event on the dialog DOM elements. Therefore, I would like to assign an handler to the "success" AJAX event for manipulating these DOM elements.

The problem is that, looking into the jqModal documentation, there is no 'success' defined events. For instance, the code:

$('#ex2').jqm({ajax: 'examples/2.html', trigger: 'a.ex2trigger'});

will call the examples/2.html for the Ajax request and the response content will replace ex2 content...

...but how can I define my handler for success (or error) such that I can bind some events on the new content of '#ex2' ?

Thank you in advance for your help,

Fabien.

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

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

发布评论

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

评论(2

浮萍、无处依 2024-08-21 18:38:52

我猜你正在使用 jqModel 插件?为了成功(不确定错误),您可以添加 onLoad(callback) ,详细信息 这里

例如

$('#ex2').jqm({ajax: 'examples/2.html', trigger: 'a.ex2trigger', onLoad: doStuff});

function doStuff() {
   //Do stuff here
}

I'm guessing you're using the jqModel plugin? For success (not sure of error) you can add onLoad(callback) as detailed here

So for instance

$('#ex2').jqm({ajax: 'examples/2.html', trigger: 'a.ex2trigger', onLoad: doStuff});

function doStuff() {
   //Do stuff here
}
天涯沦落人 2024-08-21 18:38:52

您可以使用 onLoad 回调,请参阅此处: http://dev.iceburg.net/jquery/jqModal /

$('#popup').jqm( { onLoad:onLoadCallback } ); 

You can use the onLoad callback, see here: http://dev.iceburg.net/jquery/jqModal/

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