标签: jquery
当我点击对话框内的内容时,如何关闭jquery对话框?
$('content_in_the_dialog').click(function(){ close the dialog });
答案 0 :(得分:4)
只需调用下面的关闭方法,
$('#dialog_selector').dialog('close');
http://jqueryui.com/demos/dialog/#method-close