ng 样式中的多个属性
Multiple attributes in ng-style
我需要多个原始样式属性,例如:
$scope.css = "'width': 'calc(100% - "+$scope.fixedColumnsWidth+"'),'margin-left':'"+ $scope.fixedColumnsWidth+"'";
<div ng-style="{css}">
这是行不通的。它在我使用
时有效
<div style="{{css}}">
但不适用于 IE。
ng-style 等待对象字面量,因此您需要将代码调整为
$scope.css = {
width: 'calc(100% -'+$scope.fixedColumnsWidth+')',
'margin-left': $scope.fixedColumnsWidth
}
<div ng-style="css"></div>
在视图下方使用
<div ng-style="{
'width': calc('100% -'+fixedColumnsWidth),
'margin-left': fixedColumnsWidth}">
我需要多个原始样式属性,例如:
$scope.css = "'width': 'calc(100% - "+$scope.fixedColumnsWidth+"'),'margin-left':'"+ $scope.fixedColumnsWidth+"'";
<div ng-style="{css}">
这是行不通的。它在我使用
时有效<div style="{{css}}">
但不适用于 IE。
ng-style 等待对象字面量,因此您需要将代码调整为
$scope.css = {
width: 'calc(100% -'+$scope.fixedColumnsWidth+')',
'margin-left': $scope.fixedColumnsWidth
}
<div ng-style="css"></div>
在视图下方使用
<div ng-style="{
'width': calc('100% -'+fixedColumnsWidth),
'margin-left': fixedColumnsWidth}">