你可以看到上面的代碼鏈接。
其實我想按鈕組的輸入來控制所有與按鈕組名稱相同的輸入格式。
例如,我把值到輸入表單上的「第一」按鈕右側,
,並在同一時間,所有的輸入形式名稱「第一」的應改變
只按鈕組輸入一個。
對不起,我的英語能力差,希望你能理解它!
<div ng-app="app" ng-controller="AppCtrl">
// list group
<div>
<ul>
<li ng-repeat="item in items">
<span>{{item.name}}</span>
<input type="text" ng-model="price">
</li>
</ul>
</div>
// button group
<div>
<ul class="list-btn">
<li ng-repeat="btn in btns">
<button>{{btn}}</button>
<input type="text" ng-model="price_all">
</li>
</ul>
</div>
</div>
angular.module('app', [])
.controller('AppCtrl', ['$scope', function ($scope) {
$scope.items = [
{id: 1, name: 'First'},
{id: 2, name: 'Second'},
{id: 3, name: 'Third'},
{id: 4, name: 'First'},
{id: 5, name: 'Second'},
{id: 6, name: 'Third'},
{id: 7, name: 'First'},
{id: 8, name: 'Second'},
{id: 9, name: 'Third'},
]
$scope.btns = ['First', 'Second', 'Third'];
}])
請把代碼放在帖子裏? jsFiddle真棒,但它更好[把你的代碼放在問題中](http://meta.stackexchange.com/questions/149890/prevent-posts-with-links-to-jsfiddle-and-no-code) – evolutionxbox
你需要點擊按鈕來反映更改還是立即? –
使用服務來存儲數據,你將擁有全部自動同步 – thegio