IE8用のコードをいくつか作成する必要があります。私はng-repeatでテーブルを作成します:
<input production-qty type="text" class="input-mini" maxlength="3" ng-model="day.qtyA" ui-event="{ blur : 'updateProduction(day)' }" ng-disabled="day.type=='H'">
IE8はtype = numberを行いません
数値キーではない入力フィールドでのキーストロークを無視するディレクティブが必要です。つまり、0〜9
ユーザーにabcと入力してモデルを汚染させ、値が無効であることを伝えたくありません。そもそも無効なデータを入力させたくないのです。
HTML:
<input production-qty type="text" maxlength="3" ng-model="qty1">
指令:
app.directive('productionQty', function() {
return {
require: 'ngModel',
link: function (scope, element, attr, ngModelCtrl) {
function fromUser(text) {
var transformedInput = text.replace(/[^0-9]/g, '');
console.log(transformedInput);
if(transformedInput !== text) {
ngModelCtrl.$setViewValue(transformedInput);
ngModelCtrl.$render();
}
return transformedInput; // or return Number(transformedInput)
}
ngModelCtrl.$parsers.Push(fromUser);
}
};
});
入力のng-modelのフィルター も参照してください。上記の私の答えは、pkozlowski.opensourceの答えをモデルにしています。
Ng-patternを見ましたが、テキストボックスに表示されているものをフィルターしません。 $scope.qty1
〜undefined
ですが、望ましくない文字はテキストボックスに表示されます。
HTML:
<input type="number" name="graduationYear" ng-model="gradYear" only-num>
指令:
directive('onlyNum', function() {
return function(scope, element, attrs) {
var keyCode = [8, 9, 37, 39, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 110];
element.bind("keydown", function(event) {
//console.log($.inArray(event.which,keyCode));
if ($.inArray(event.which, keyCode) === -1) {
scope.$apply(function() {
scope.$eval(attrs.onlyNum);
event.preventDefault();
});
event.preventDefault();
}
});
};
});
最初にこのコードをjsファイルに含めます numericInput.js
ディレクティブ:-
.directive('numeric', function() {
return function(scope, element, attrs) {
$(element[0]).numericInput({ allowFloat: true });
};
})
HTML:-
<input type="text" numeric />
[〜#〜] demo [〜#〜] Numeric Demo