2011-03-01 131 views

回答

1

你不能继续使用强加的标记,只是隐藏标签?

要隐藏的标签,你可以这样做:

$("#my_tabs_container") // your original element that you converted to tabs 
    .tabs("widget") // get the widget container 
    .find(".ui-tabs-nav") // locate the tab container 
    .hide(); // get rid of it 
相关问题