0
要素の数を選択ボックスで指定された数値に変更したいとします。 マイコード:
ng選択に基づいて返信
のindex.php
<select class="form-control-static" ng-model="fieldSelect" ng-change="showSelectValue(fieldSelect)">
<option ng-repeat="i in getNumber(number) track by $index" value="{{$index+1}}">{{$index+1}}</option>
</select>
のindex.php
<div ng-repeat="t in getTimes(1) track by $index")>
Hello!
</div>
にDefault.js
$scope.showSelectValue = function(fieldSelect) {
contentFields = fieldSelect;
$scope.getTimes();
};
$scope.getTimes=function(n){
n = contentFields;
return new Array(n);
};
ありがとう!これは私のために働いた! – CrazzyMarc