jQuery手风琴部分索引

时间:2012-06-06 15:35:44

标签: accordion jquery-ui-accordion

我怎样才能使这款手风琴变得通用?也就是说,而不是活动:2我希望它指向下一部分(可能是某些函数,如next()或类似...)。同样,对于上一节。

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

此外,如果它打开一个部分,是否有办法专注于该部分的第一个或最后一个输入字段?

感谢任何帮助。

1 个答案:

答案 0 :(得分: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
});