加载 jqmodal 对话框时如何分配 Ajax 成功处理程序?
我需要的很简单,但是在网上搜索,我没有找到任何例子。
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我猜你正在使用 jqModel 插件?为了成功(不确定错误),您可以添加
onLoad(callback)
,详细信息 这里例如
I'm guessing you're using the jqModel plugin? For success (not sure of error) you can add
onLoad(callback)
as detailed hereSo for instance
您可以使用 onLoad 回调,请参阅此处: http://dev.iceburg.net/jquery/jqModal /
You can use the onLoad callback, see here: http://dev.iceburg.net/jquery/jqModal/