我想这样做,以便在关闭jQuery UI对话框时,会触发文档的focus
事件。每当对话框关闭时,最好不要将每个对话框绑定到页面本身。
我该怎么做?
答案 0 :(得分:5)
$( ".selector" ).dialog({
close: function(event, ui) { $('#txt').focus(); }
});
答案 1 :(得分:0)
您选中了this
吗?$( ".selector" ).dialog({
close: function(event, ui) { ... }
});
答案 2 :(得分:0)
$("#image_div").dialog({
height:500,
width:600,
maxHeight: 700,
minWidth: 700,
modal: true,
title:'Crop Your Profile Image',
close: function() {
//your event
},
buttons : {...}
});