Close a jQuery UI Dialog from an element inside of it?
这是一个简单的问题,可能比我想的要简单。
我正在使用 $.ajax() 调用生成的 html 填充 jQuery UI 对话框。在某些情况下,html 包含一个按钮,当单击该按钮时,我想关闭包含对话框。
假设我对使用
使用
1
|
$(this).closest(‘.ui-dialog-content’).dialog(‘close’);
|
类似:
1
2 3 |
$(‘a.close’).click(function(e) {
$(this).closest(‘.dialog’).dialog(‘close’); }); |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/268796.html