這裏是我的小提琴鏈接http://jsfiddle.net/krthk2005/j5ze42bf/10/在NG-重複名單不會得到更新
問題更新:我無法更新的類和風格,請讓我知道
我試圖填充使用列表ng-repeat,當我更新列表中的值時,它需要更新。
HTML代碼:
<div ng-controller="Ctrl1">
<button ng-click="updatedList(stickyList)">Updated List</button>
<div id="mainStickyLayout" ng-repeat="sticky in stickyList">
<!-- Stickies can be defined using ordinary HTML. Just put the "sticky" class on a wrapper around a textarea! -->
<div id="sticky{{$index}}" class="sticky {{sticky.color}}" style="{{sticky.style}}">
<textarea ng-model="sticky.content"></textarea>
</div>
</div>
<p>
{{finalList}}
</p>
</div>
JS CODE
變種應用= angular.module( '對myApp',[]);
function Ctrl1($scope) {
$scope.stickyList = [{
"content": "store",
"style": "top: 100px; left: 140px;",
"color": "sticky-orange"
}, {
"content": "your",
"style": "top: 200px; left: 240px;",
"color": "sticky-blue"
}, {
"content": "note",
"style": "top: 300px; left: 340px;",
"color": "sticky-yellow"
}, {
"content": "here",
"style": "top: 400px; left: 440px;",
"color": "sticky-green"
}];
$scope.updatedList = function(stickyList) {
$scope.finalList = stickyList;
}
}
我使用angularjs
請檢查我張貼的形象寫的更新功能。我需要有4個文字區域用不同的花式和類,它需要進行動態更新
我需要更新的樣式也那麼我該怎麼辦呢 –
你需要使用納克級和NG-風格上的div,而不是階級和風格 – Austin
我無法更新課程和風格..你能請建議 –