gpt4 book ai didi

jquery - 遍历 JQuery UI 选项卡中的选项卡

转载 作者:行者123 更新时间:2023-12-01 05:08:39 26 4
gpt4 key购买 nike

我正在尝试将数据加载到选项卡面板(ui.panel),然后通过 .tabs("select", ui.index) 激活相关选项卡。

如何迭代 jQuery UI 选项卡中的所有 ui 对象?那些可通过 UI Tabs 对象的 load 方法获得。

最佳答案

这就是我实现目标的方法:

            var $tabs = $("#tabContainer").tabs({
load: function(event, ui){
$("a.updateTab").live("click", function(){

// href for links are replaced by jq tabs with this pattern (pseudocode):
// a.href = "#" + a.title.replace(" ", "_")
// so we're searching a tab wich content should be reloaded
var tabItemId = "#Menu_" + "some text";

var index = $(".ui-tabs-panel", $tabs).index($(tabItemId));
$tabs.tabs("url", index, this.href);
$tabs.tabs("select", index);
return false;
});
}
});

关于jquery - 遍历 JQuery UI 选项卡中的选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3596205/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com