我想要标记值on click
,因此,如果$scope.customize
的值为false
,那么它应设置为true
&反之亦然。
$scope.customize = false;
<div ng-if="customize">
<button class="btn btn-sm btn-success">Save</button>
<button class="btn btn-sm btn-primary">Add</button>
</div>
<span title="Customize" ng-click="????">Customize</span>
要在范围ng-click
中编码以切换值?
答案 0 :(得分:5)
ng-click="customize = !customize"