0

我怎样才能使这个手风琴通用?也就是说,而不是 active:2 我希望它指向下一部分(可能是诸如 next() 之类的函数......)。同样,对于上一节。

$('#accordion').accordion({collapsible: true, active:2});

还有一次,如果它打开一个部分,有没有办法专注于该部分的第一个或最后一个输入字段?

任何帮助表示赞赏。

4

1 回答 1

0
$("#selector").accordion({ 
    change : function(event, ui) {
        // Your code to expand the next section and/or select the first element
    }
    // There is also a changestart event you could use instead of change
});
于 2012-06-06T15:46:52.747 回答