2012-06-06 76 views
0

我該如何使這種手風琴具有通用性?也就是說,不是主動的:2我希望它指向下一節(可能是一些像next()之類的函數,或者......)。同樣,對於上一節。 $('#accordion')。accordion({collapsible:true,active:2});jQuery手風琴款索引

此外,如果它打開一個部分,有沒有辦法專注於該部分的第一個或最後一個輸入字段?

任何幫助表示讚賞。

回答

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 
}); 
+0

謝謝託德!但我基本上需要擴展下一部分的代碼並關注第一個元素。 –

+0

你爲什麼不試着自己搞清楚。如果你不能工作,請告訴我你的問題是什麼。對於初學者來說,看看這個(如果你還沒有):http://jqueryui.com/demos/accordion/#event-change –

+0

找到了,它的 - > jQuery('#accordion')。accordion('選項','主動'); –