0
我正在寫一個文本框驗證,實際上不允許用戶輸入一些無效的特殊字符。一旦用戶輸入一個無效的特殊字符我舉辦了一個硬錯誤提示,我設置一個標誌:多個文本框輸入驗證檢查
$scope.charAllowedText = false;
所以Next按鈕,將輸入框內有任何無效的價值得到禁止。只要用戶刪除無效字符,我只是將此標誌更改爲true。 我的解決方案對單個文本框工作正常,但這不適用於多個文本輸入。
在每個用戶的onClick我打電話此驗證:
$scope.validateUserInput = function(inputKey) {
var count = 0;
// inputKey = inputKey.replace(/[^a-zA-Z0-9 ]/g, "");
$scope.imp = [];
$scope.imp = Array.from(inputKey.replace(/[a-zA-Z0-9\s]/g, ''));
var charInp = [];
$scope.missingItems = [];
$scope.imp.forEach(function(itemFromTarget) {
var itemFound = false;
for (var i in $rootScope.specialChar) {
if (itemFromTarget === $rootScope.specialChar[i].value) {
itemFound = true;
}
}
if (!itemFound) {
$scope.charAllowedText = false;
$scope.missingItems.push(itemFromTarget);
}
});
if (($scope.charAllowedText == false)) {
$rootScope.charAllowedConfig = $scope.charAllowedText;
$scope.header_class = 'modal-error-header';
$scope.cancel_bttn = {
txt: 'Ok',
class: 'btn-default'
};
$scope.action_bttn = {};
$modal({
scope: $scope,
templateUrl: 'flexi-modal.html',
title: 'Error!',
content: '<p class="alert alert-danger">You have entered the ' + $scope.missingItems[0] + ' character which is not supported. Please reenter a different character.</p>',
html: true,
show: true,
animation: 'am-fade-and-scale',
placement: 'center'
});
}
};
對於特定的情況下,如果我仍然有無效字符我的下一個按鈕被自啓用的文本框和其他文本框一個刪除無效字符標誌值由第一個文本框設置爲true。
添加一個蹲點爲了看看你的意思或給我們什麼傳遞和什麼不是通過 – geo