有没有办法在Angularjs中处理Accordion中的关闭/崩溃事件?

时间:2014-11-25 06:05:25

标签: angularjs accordion

有没有办法在Angularjs中处理Accordion中的关闭/崩溃事件?

我需要清除Angularjs中Accordion中关闭/崩溃的过滤器。

1 个答案:

答案 0 :(得分:0)

我假设您使用的是bootstrap,因此您可以关注http://angular-ui.github.io/bootstrap/的文档。

有一个使用is-open =" status.open"单独切换手风琴元素的示例。在手风琴组中(这个例子也有雪佛龙链接到相同的状态):

<accordion-group is-open="status.open">
    <accordion-heading>
        I can have markup, too! <i class="pull-right glyphicon" ng-class="{'glyphicon-chevron-down': status.open, 'glyphicon-chevron-right': !status.open}"></i>
    </accordion-heading>
    This is just some content to illustrate fancy headings.
</accordion-group>

然后你可以通过$ scope.status.open动态控制手风琴状态,在true和false之间切换。并且记得要确保你没有&#34;关闭他人&#34; -attribute set ...