我正在这样处理我的问题:
ng-style="{ width: getTheValue() }"
但是为了避免在控制器端使用此功能,我更愿意这样做:
ng-style="{ width: myObject.value == 'ok' ? '100%' : '0%' }"
我该怎么做?
简单的例子:
<div ng-style="isTrue && {'background-color':'green'} || {'background-color': 'blue'}" style="width:200px;height:100px;border:1px solid gray;"></div>
{'background-color':'green'} 返回 true
或相同的结果:
<div ng-style="isTrue && {'background-color':'green'}" style="width:200px;height:100px;border:1px solid gray;background-color: blue"></div>
其他有条件的可能性:
<div ng-style="count === 0 && {'background-color':'green'} || count === 1 && {'background-color':'yellow'}" style="width:200px;height:100px;border:1px solid gray;background-color: blue"></div>
正如@Yoshi所说,从 Angular 1.1.5 开始,你可以使用它而无需任何更改。
如果你使用 Angular < 1.1.5, you can use ng-class。
.largeWidth {
width: 100%;
}
.smallWidth {
width: 0%;
}
// [...]
ng-class="{largeWidth: myVar == 'ok', smallWidth: myVar != 'ok'}"
你可以这样实现:
ng-style="{ 'width' : (myObject.value == 'ok') ? '100%' : '0%' }"
@jfredsilva 显然对这个问题有最简单的答案:
ng-style="{ 'width' : (myObject.value == 'ok') ? '100%' : '0%' }"
但是,您可能真的想考虑我的答案以解决更复杂的问题。
类似三元的例子:
<p ng-style="{width: {true:'100%',false:'0%'}[myObject.value == 'ok']}"></p>
更复杂的事情:
<p ng-style="{
color: {blueish: 'blue', greenish: 'green'}[ color ],
'font-size': {0: '12px', 1: '18px', 2: '26px'}[ zoom ]
}">Test</p>
如果
$scope.color == 'blueish'
,颜色将为“蓝色”。
如果
$scope.zoom == 2
,字体大小将为26px。
angular.module('app',[]);
function MyCtrl($scope) {
$scope.color = 'blueish';
$scope.zoom = 2;
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.min.js"></script>
<div ng-app="app" ng-controller="MyCtrl" ng-style="{
color: {blueish: 'blue', greenish: 'green'}[ color ],
'font-size': {0: '12px', 1: '18px', 2: '26px'}[ zoom ]
}">
color = {{color}}<br>
zoom = {{zoom}}
</div>
如果你想与表达式一起使用,正确的方法是:
<span class="ng-style: yourCondition && {color:'red'};">Sample Text</span>
但最好的方法是使用 ng-class
一般而言,您可以使用
ng-if
和 ng-style
的组合,将条件更改与背景图像的更改结合起来。
<span ng-if="selectedItem==item.id"
ng-style="{'background-image':'url(../images/'+'{{item.id}}'+'_active.png)','background-size':'52px 57px','padding-top':'70px','background-repeat':'no-repeat','background-position': 'center'}"></span>
<span ng-if="selectedItem!=item.id"
ng-style="{'background-image':'url(../images/'+'{{item.id}}'+'_deactivated.png)','background-size':'52px 57px','padding-top':'70px','background-repeat':'no-repeat','background-position': 'center'}"></span>
对于单个 css 属性
ng-style="1==1 && {'color':'red'}"
对于多个css属性可以参考以下
ng-style="1==1 && {'color':'red','font-style': 'italic'}"
将 1==1 替换为你的条件表达式
三元运算符的语法也可以工作:
ng-style="<$scope.var><condition> ? {
'<css-prop-1>':((<value>) / (<value2>)*100)+'%',
'<css-prop-2>':'<string>'
} : {
'<css-prop-1>':'<string>',
'<css-prop-2>':'<string>'
}"
其中
<value>
是 $scope 属性值。
例如:
ng-style="column.histograms.value=>0 ?
{
'width':((column.histograms.value) / (column.histograms.limit)*100)+'%',
'background':'#F03040'
} : {
'width':'1px',
'background':'#2E92FA'
}"
```
这允许对 css 属性值进行一些计算。
我在多个独立的条件下执行如下操作,它的作用就像魅力:
<div ng-style="{{valueFromJS}} === 'Hello' ? {'color': 'red'} : {'color': ''} && valueFromNG-Repeat === '{{dayOfToday}}' ? {'font-weight': 'bold'} : {'font-weight': 'normal'}"></div>
好吧,我之前不知道
AngularJS
通常指的是Angular
v1版本,并且仅指Angular到Angular v2+
此答案仅适用于
Angular
将其留在这里以供将来参考..
不确定它对你们来说如何,但在 Angular 9 上我必须将 ngStyle 括在括号中,如下所示:
[ng-style]="{ 'width' : (myObject.value == 'ok') ? '100%' : '0%' }"
否则无效
我正在使用 ng-class 添加样式:-
ng-class="column.label=='Description' ? 'tableStyle':
column.label == 'Markdown Type' ? 'Mtype' :
column.label == 'Coupon Number' ? 'couponNur' : ''
"
使用 三元运算符 以及 angular.js 中的 ng 类指令来赋予样式。 然后在 .css 或 .scss 文件中定义类的样式。例如:-
.Mtype{
width: 90px !important;
min-width: 90px !important;
max-width: 90px !important;
}
.tableStyle{
width: 129px !important;
min-width: 129px !important;
max-width: 129px !important;
}
.couponNur{
width: 250px !important;
min-width: 250px !important;
max-width: 250px !important;
}
最简单的是使用
[style.width]="getTheValue()"