当我点击我页面中的链接时,我打开一个jquery对话框(如果它尚未打开)并在其中添加一个jquery ui选项卡。以下示例来自 here
但是当我关闭我的jquery对话框并重新打开它时,之前打开的选项卡就会显示出来。我想在jquery对话框中没有选项卡,当我关闭并重新打开对话框时,我可以在对话框中添加一个新选项卡。
这是我的jquery文档准备好的代码:
<script type="text/javascript">
var tab_counter = 1;
$(document).ready(function() {
var $tabs_example_1 = $('#example_1').tabs();
$('#addUiTab').click(function(){
var label = 'Tab'+tab_counter,
content = '<span id="tab">This is a sample tab content</span>';
$('body').append('<div id="tab_'+tab_counter+'">'+content+'</div>');
$tabs_example_1.tabs('add','#tab_'+tab_counter,label);
tab_counter++;
return false;
});
});
</script>
这是我的功能,打开一个对话框(如果它尚未打开)并在其中添加一个标签,当我点击页面中的链接时:
function open_dialog()
{
if(($("#jdialog_box_content").dialog( "isOpen" ) === true) == false)
{
$('#jdialog_box_content').dialog({
open: function(event, ui) { },
close: function(event, ui) { },
autoResize: false,
width: 460,
height: 230,
closeOnEscape: false,
title: 'Dialog1'
});
}
$('#addUiTab').trigger("click");
}
最后这是用于jquery选项卡的html,在jquery对话框中:
<div id="jdialog_box_content" style="display:none;">
<div id="example_1" class="tabs">
<ul>
<li><a href="#tabs-1-2">Tab 1</a></li>
<li><a href="#tabs-2-2">This is tab 2</a></li>
<li><a href="#tabs-3-2">This is tab number 3</a></li>
</ul>
<div id="tabs-1-2">Tab 1<br>Lorem ipsum dolor sit amet</div>
<div id="tabs-2-2">This is tab 2<br>Lorem ipsum dolor sit amet</div>
<div id="tabs-3-2">This is tab 3<br>Lorem ipsum dolor sit amet</div>
</div>
</div>
我很想知道如何重新打开jquery对话框中的现有标签。
注意:我正在关注jquery ui标签的example at this site。
答案 0 :(得分:5)
您的对话框声明中需要close: function(event, ui) { $("#jdialog_box_content").html(""); }
。
如果您不需要空对话框而且没有标签,您可以这样做:
$('#jdialog_box_content').dialog({
open: function(event, ui) { },
close: function(event, ui) {
var $tabs = $('#example_1');
var l = $tabs.tabs('length');
while(l)
{
$tabs.tabs('remove', l-1);
l = $tabs.tabs('length');
}
},
autoResize: false,
width: 460,
height: 230,
closeOnEscape: false,
title: 'Dialog1'
});
答案 1 :(得分:0)
谢谢,我还可以在jquery对话框的close事件下使用for循环代码来关闭所有打开的标签:
close: function(event, ui)
{
for (var i = $('#example_1').tabs('length') - 1; i >= 0; i--) {
$('#example_1').tabs('remove', i);
}
}