例
显示HTML的一个部分,只有在一定的值相匹配:
<div ng-switch="myVar">
<div ng-switch-when="dogs">
<h1>Dogs</h1>
<p>Welcome to a world of dogs.</p>
</div>
<div ng-switch-when="tuts">
<h1>Tutorials</h1>
<p>Learn from examples.</p>
</div>
<div ng-switch-when="cars">
<h1>Cars</h1>
<p>Read about cars.</p>
</div>
<div ng-switch-default>
<h1>Switch</h1>
<p>Select topic from the dropdown, to switch the content of this DIV.</p>
</div>
</div>
试一试» 定义和用法
在ng-switch
指令,让您隐藏根据表达式/显示HTML元素。
子元素与ng-switch-when
如果它获得匹配的,否则element指令将显示,和它的孩子们将被删除。
您还可以定义一个默认的部分,通过ng-switch-default
指令,表现出部分如果其他部分的非获取匹配。
句法
< element ng-switch=" expression ">
< element ng-switch-when=" value "></ element >
< element ng-switch-when=" value "></ element >
< element ng-switch-when=" value "></ element >
< element ng-switch-default></ element >
</ element >
所有HTML元素的支持。
参数值
Value | Description |
---|---|
expression | An expression that will remove elements with no match, and display elements with a match. |