1

我已经使用http://angular-ui.github.io/bootstrap/#/accordion中的示例在 angularjs 中创建了手风琴菜单, 但我希望手风琴的标题能够动态更改。我尝试通过 jquery 来做但是它在这不起作用。任何人都知道如何使用上面的引导示例来做到这一点

4

1 回答 1

3

html 中 {{}} 中包含的所有角度表达式都是动态更新的,比如这里的 group.title 会在$scope.group.title发生变化时更新:

<accordion-group heading="{{group.title}}" ng-repeat="group in groups">

于 2013-10-15T13:05:50.263 回答