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);
});
希望可以帮助到你