解决方法
更新
自从我原来的答案和jQuery 1.9的发布以来,API已经改变。首选方法是使用redreinard’s answer中提到的活动选项。
旧方法(pre jQuery 1.9)
根据documentation on the JqueryUI Tabs,您可以通过使用可用的选择函数来设置它,如下面的方法所示:
// index will be the index of the tab that you wish to select $('selector').tabs( "select",index ) $('selector').tabs({ selected: index });