我试图ng-switch
在设置某个索引时使用显示特定元素来切换元素。
ng-switch
正在工作,除了它只显示最后一个 switch 语句。
使用此代码时,我只显示“第 2 帧”div:
<div ng-switch="frame">
<div ng-switch-when="1">Frame 1</div>
<span>Some permanent text</span>
<span ng-switch-when="2">Text relevant to frame 2</span>
<div ng-switch-when="2">Frame 2</div>
</div>
switch-when
当frame
设置为 2时,我希望上面显示所有内容。
注意:标记不能更改。
- 我怎样才能做到这一点?
- 如果我不能有更好/不同的选择吗?