我正在使用jQuery Address plug-in使我的jQuery UI标签可收藏并符合后退按钮历史记录。效果很好。
但是,我想知道是否可以为嵌套选项卡提供相同类型的“深层链接”?例如,我有以下内容:
<div id="tabs">
<ul class="links">
<li><a href="#one">main tab one</a></li>
<li><a href="#two">main tab two</a></li>
<li><a href="#three">main tab three</a></li>
<li><a href="#four">main tab four</a></li>
</ul>
<div id="one"> Main tab one content </div>
<div id="two">
Main tab two content
<div id="nested">
<ul>
<li><a href="#nestedone">nested tab one</a></li>
<li><a href="#nestedtwo">nested tab two</a></li>
<li><a href="#nestedthree">nested tab three</a></li>
</ul>
<div id="nestedone"> nested tab one </div>
<div id="nestedtwo"> nested tab two </div>
<div id="nestedthree"> nested tab three </div>
</div> <!-- end nested -->
</div>
<div id="three"> Main tab three content </div>
<div id="fout"> Main tab four content </div>
</div> <!-- end tabs -->
<script>
$(document).ready(function(){
/* main tabs stuff */
var $tabs = $("#tabs").tabs().addClass('ui-tabs-vertical ui-helper-clearfix');
$("#tabs li").removeClass('ui-corner-top').addClass('ui-corner-left');
/* nested tabs */
var $nested = $("#nested").tabs().addClass('ui-tabs-hz');
$("#nested ul").removeClass('ui-tabs-nav');
/* show the hash's tab whenever the address is changed */
$.address.change(function(event){
$("#tabs").tabs( "select" , window.location.hash ) ;
})
/* when the tab is selected update the url with the hash */
$("#tabs").bind("tabsselect", function(event, ui) {
window.location.hash = ui.tab.hash;
})
});
</script>
一切都适用于主要(外部标签):
但是,我似乎无法为内部选项卡获得相同类型的功能。
鉴于嵌套选项卡包含在其中一个“主”选项卡中,上面的绑定函数将$(this)视为外部选项卡(即使单击嵌套选项卡)。结果是JavaScript代码对嵌套选项卡执行正确,但随后执行就好像最后一个主(外部)选项卡是选中的选项卡一样。
我似乎无法弄清楚如何在处理嵌套选项卡之后以及在运行最后一个主(外部)选项卡之前停止执行JavaScript。我能得到的最接近的是将以下内容添加到bind函数并在包含嵌套选项卡的外部选项卡上停止执行。
$("#tabs").bind("tabsselect", function(event, ui) {
if ($(ui.tab).closest('div').attr('id') !== "nested") {
window.location.hash = ui.tab.hash;
}
})
我确定我错过了一些明显的东西。有什么建议吗?
谢谢!
答案 0 :(得分:0)
您可能需要采取某种解决方法来组合哈希值。我对.address插件没有太多经验,但是这样的事情怎么样:
<div id="tabs">
<ul class="links">
<li><a href="#one">main tab one</a></li>
<li><a href="#two">main tab two</a></li>
<li><a href="#three">main tab three</a></li>
<li><a href="#four">main tab four</a></li>
</ul>
<div id="one"> Main tab one content </div>
<div id="two">
Main tab two content
<div id="nested">
<ul>
<li><a href="#two-nestedone">nested tab one</a></li>
<li><a href="#two-nestedtwo">nested tab two</a></li>
<li><a href="#two-nestedtwo">nested tab three</a></li>
</ul>
<div id="two-nestedone"> nested tab one </div>
<div id="two-nestedtwo"> nested tab two </div>
<div id="two-nestedthree"> nested tab three </div>
</div> <!-- end nested -->
</div>
<div id="three"> Main tab three content </div>
<div id="four"> Main tab four content </div>
</div> <!-- end tabs -->
对于javascript:
$(document).ready(function(){
/* main tabs stuff */
var $tabs = $("#tabs").tabs().addClass('ui-tabs-vertical ui-helper-clearfix');
$("#tabs li").removeClass('ui-corner-top').addClass('ui-corner-left');
/* nested tabs */
var $nested = $("#nested").tabs().addClass('ui-tabs-hz');
$("#nested ul").removeClass('ui-tabs-nav');
/* show the hash's tab whenever the address is changed */
$.address.change(function(event){
var arrParts = window.location.hash.substring(1).split("-");
$("#tabs").tabs( "select" , '#' + arrParts[0] ) ;
if (arrParts.length > 1) {
$("#nested").tabs( "select" , '#' + arrParts[1] ) ;
}
})
/* when the tab is selected update the url with the hash */
$("#tabs, #nested").bind("tabsselect", function(event, ui) {
window.location.hash = ui.tab.hash;
event.stopPropagation();
})
});