//输出
{{id }}
//格式化时间
{{time | date:‘yyyy.MM.dd‘}}
//for 循环
<li ng-repeat="menu in menus">
// 绑定对象
<input type=”text” ng-model=’password’>
//绑定点击时间
<button ng-click=”btnClick()”/>
//switch 判断
<span ng-switch on=”person.sex”>
<span ng-switch-when=”1〃>you are a boy</span>
<span ng-switch-when=”2〃>you are a girl</span>
//if 判断
<span ng-if=”person.sex==1〃>you may be a father</span>
时间: 2024-10-05 23:25:20