【发布时间】:2013-12-15 17:42:17
【问题描述】:
我正在尝试使用ng-style 动态设置 div 宽度,但它没有应用样式。代码如下:
<div style="width: 100%;" id="container_fform" ng-controller="custController">
<div style="width: 250px;overflow: scroll;">
<div ng-style="myStyle"> </div>
</div>
</div>
控制器:
var MyApp = angular.module('MyApp', []);
var custController = MyApp.controller('custController', function ($scope) {
$scope.myStyle="width:'900px';background:red";
});
我错过了什么?
小提琴链接:Fiddle
【问题讨论】: