因此,目标是使用UI Dialog插件确认切换到另一个UI选项卡。 使用常见的确认方法很简单:
jQuery("#tabsContainer").tabs({
select: function(event, ui) {
return confirm("Some confirmation message...");
}
});
但如何使用Dialog模式框实现相同的行为?
我想我必须致电:
jQuery("#tabsContainer").tabs("select", ui.index);
关于“ok回调”,但这不符合我的预期。此外 - 没有报告错误......
jQuery("#tabsContainer").tabs({
select: function(event, ui) {
jQuery("#dialogContainer").dialog({
buttons: {
'Ok': function() {
jQuery("#tabsContainer").tabs("select", ui.index);
},
Cancel: function() { return; }
}
});
return false;
}
});
答案 0 :(得分:3)
问题的根源是window.confirm
阻塞而jQuery UI的对话框没有阻塞。您可以通过不同的方式构建代码来解决这个问题。这是许多可能的方法之一:
$(function() {
jQuery('#tabsContainer').tabs({
select: function(event, ui) {
// only allow a new tab to be selected if the
// confirmation dialog is currently open. if it's
// not currently open, cancel the switch and show
// the confirmation dialog.
if (!jQuery('#dialogContainer').dialog('isOpen')) {
$('#dialogContainer')
.data('tabId', ui.index)
.dialog('open');
return false;
}
}
});
jQuery('#dialogContainer').dialog({
autoOpen: false,
buttons: {
'Ok': function() {
// a new tab must be selected before
// the confirmation dialog is closed
var tabId = $(this).data('tabId');
$('#tabsContainer').tabs('select', tabId);
$(this).dialog('close');
},
'Cancel': function() {
$(this).dialog('close');
}
}
});
});