下面是JS代码: var curr = null; //curr为当前tab的标题,在else中赋值 function addtab(href, tabtitle) { if (curr) { $('#contab').tabs('update', { tab : curr, options : { title : tabtitle, href : href, selected : true } }); $('#contab').tabs('select', tabtitle); } else…