JQuery Accordion:检索活动选项卡/动态打开

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQuery Accordion:检索活动选项卡/动态打开相关的知识,希望对你有一定的参考价值。

  1. // imagine the accordion is started like this:
  2. $("#accordion").accordion({ header: 'h5', collapsible: true , active: false});
  3.  
  4.  
  5. // this gets you the index of open accordion [0.....n]
  6. $("#accordion h5").index($("#accordion h5.ui-state-active"));
  7.  
  8. // let's save that index.. and use it to activate/deactivate the tab
  9. n = $("#accordion h5").index($("#accordion h5.ui-state-active"));
  10. $('#accordion').accordion('activate', n);

以上是关于JQuery Accordion:检索活动选项卡/动态打开的主要内容,如果未能解决你的问题,请参考以下文章