jquery ui 插件 tabs的使用! 怎么实现点击i左边导航在右边显示导航的内容

2024-12-14 21:40:43
推荐回答(1个)
回答1:

1.引用js和css
2.定义tabs:
var $tabs = $("#tabs").tabs({
tabTemplate: "

  • #{label} Remove Tab
  • ",
    add:function(event, ui){
    $tabs.tabs('select', ui.index);
    }
    });
    3.定义点击时的方法:
    $("a").click(function(){
    $href = $(this).attr("id");
    $title = $(this).text();
    $tabs.tabs( "add", $href,$title);
    });

    希望可以帮助到你