如何使用ng-style设置div宽度

时间:2013-11-29 13:46:50

标签: css angularjs ng-style

我正在尝试使用ng-style动态设置div宽度,但它没有应用样式。这是代码:

<div style="width: 100%;" id="container_fform" ng-controller="custController">
    <div style="width: 250px;overflow: scroll;">
        <div ng-style="myStyle">&nbsp;</div>
    </div>
</div>

控制器:

var MyApp = angular.module('MyApp', []);

var custController = MyApp.controller('custController', function ($scope) {
    $scope.myStyle="width:'900px';background:red";

});

我错过了什么?

小提琴链接:Fiddle

2 个答案:

答案 0 :(得分:135)

ng-style的语法并不完全相同。它接受密钥字典(属性名称)和值(它们应该采用的值,空字符串取消它们)而不仅仅是字符串。我想你想要的是:

<div ng-style="{ 'width' : width, 'background' : bgColor }"></div>

然后在你的控制器中:

$scope.width = '900px';
$scope.bgColor = 'red';

这保留了模板和控制器的分离:控制器保存语义值,而模板将它们映射到正确的属性名称。

答案 1 :(得分:35)

ngStyle接受地图:

$scope.myStyle = {
    "width" : "900px",
    "background" : "red"
};

Fiddle