2014-08-29 52 views

回答

3

裏面onChange回調,選擇this返回內容」容器作爲jQuery對象。因此,您可以將它與index()方法一起使用,並通過內容選擇器進行過濾。 旁邊嘗試,它爲我工作:

$('.ui.accordion').accordion({ 
    onChange: function() { 
     alert(this.index(".content")); 
     console.log(this.index(".content")); 
    } 
}); 

工作例如:http://jsfiddle.net/n8o1ps0t/