當按鈕被點擊時,我已經動態創建了文本框。但即使文本框是空的,它也會保存文本框。但是我有一些動態創建的文本框,以識別特定的空白文本框並驗證它。我正在嘗試點擊保存按鈕時的驗證。任何人都可以幫我解決這個問題。如何驗證angularjs中動態創建的文本框?
//onclick creating textboxes
$scope.expndtxt=function(){
$scope.textboxes.push("");
};
//view
<li ng-repeat="textbox in textboxes track by $index">
Label For Inputfield:
<input type="text" id="in_{{$index}}" data-ng-model="$parent.textboxes[$index]"/><button class="btn btn-sm btn-default" ng-click="deletetxtbox($index)">-</button>
</li>
請添加當前您的代碼。 –
我編輯了這個問題,一旦檢查它 – Sweety