1
試圖找出如何確定語義UI手風琴當前打開的部分(http://semantic-ui.com/modules/accordion.html):目前確定開語義UI手風琴指數
這適用於jQuery UI的手風琴,語義UI不起作用:
$( 「#手風琴」)手風琴( '選項', '積極')。
也試過下面的代碼,但總是返回 「1」:
$('#selector').accordion({
onChange: function() {
alert("selected" + $('#selector').index());
}
});