div 너비를 동적으로 설정하려고합니다. ng-style
하지만 스타일을 적용하지 않습니다. 다음은 코드입니다.
<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 링크 : Fiddle