0
我有這個控制器與三種顏色的名稱。單選按鈕和角js陣列
<script>
angular.module('radioExample', [])
.controller('ExampleController', ['$scope', function($scope) {
$scope.color = [{
name: "Red"
},
{
name: "green"
},
{
name: "Blue"
}
];
}]);
</script>
我想創建三個單選按鈕誰顯示correspondig顏色在屏幕上顯示
<label>
<input type="radio" ng-model="color.name" value="red"> Red
<tt>color = {{color.name }}</tt>
</label>
我希望直接從陣列而不是從值取值。我該怎麼辦?
我嘗試使用value =「color.name」,但不運行。
謝謝。
感謝你,但與你的代碼時,我的顏色改變它值「color.name顏色= color.name」點擊,我想只顯示紅色,綠色或藍色 – nowaySync
之前有一個錯過。在帖子後修復了一下。它現在應該工作。 – Sreekanth
與值= {{color.name}}「」顏色=「沒有改變,它必須改變每個單選按鈕 – nowaySync