日期:2014-05-17 浏览次数:20720 次
$("#tt").tabs({
onSelect:function(title,index){
}
});
<script type="text/javascript">
$(function(){
$('#tt').tabs({
onSelect:function(title,index){
alert("出来啦!");
},
tools:[{
iconCls:'icon-add',
handler: function(){
alert('add');
}
},{
iconCls:'icon-save',
handler: function(){
alert('save');
}
}]
});
});
var index = 0;
function addTab(){
index++;
$('#tt').tabs('add',{
title:'New Tab ' + index,
content:'Tab Body ' + index,
iconCls:'icon-save',
closable:true
});
}
</script>