如何在 angular 中验证值 1 和 1.00 相同以及 1.01 不同
How to validate value 1 and 1.00 as same and 1.01 as different in angular
如何处理 1 和小数位数应为零 eg) 1.000 相同
显示警报弹出编号应为 same.And 文本框的最大编号长度为 7。
eg)1 和 1.00000001 不同
数字为 1 和 1.01 为 different.Here 我有数值 1 和数值 1。任何十进制数。
如果数字是 1,1.00 表示显示警报值相同,1.01、1.001 或数字后的任何小数点将被视为不同。
这是我的示例代码:
<!doctype html>
<html ng-app>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.5/angular.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div ng-controller="Ctrl">
<input type="text" ng-model="contractDetailsScreen.percent" maxlength="7" numbers-only="numbers-only" />
<button ng-click="actionme()">click</button>
</div>
</body>
</html>
function Ctrl($scope) {
$scope.actionme = function(){
if($scope.contractDetailsScreen.percent){
alert('value same');
}
else{
alert("value diffrent");
}
};
}
使用parseFloat转换数字再匹配值
控制器代码
$scope.actionme = function(){
var num = parseFloat ($scope.contractDetailsScreen.percent);
if(1 == num) {
$scope. result = "Matched";
} else {
$scope.result = "not Matched";
}
};
工作Demo
如何处理 1 和小数位数应为零 eg) 1.000 相同 显示警报弹出编号应为 same.And 文本框的最大编号长度为 7。
eg)1 和 1.00000001 不同
数字为 1 和 1.01 为 different.Here 我有数值 1 和数值 1。任何十进制数。
如果数字是 1,1.00 表示显示警报值相同,1.01、1.001 或数字后的任何小数点将被视为不同。
这是我的示例代码:
<!doctype html>
<html ng-app>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.5/angular.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div ng-controller="Ctrl">
<input type="text" ng-model="contractDetailsScreen.percent" maxlength="7" numbers-only="numbers-only" />
<button ng-click="actionme()">click</button>
</div>
</body>
</html>
function Ctrl($scope) {
$scope.actionme = function(){
if($scope.contractDetailsScreen.percent){
alert('value same');
}
else{
alert("value diffrent");
}
};
}
使用parseFloat转换数字再匹配值
控制器代码
$scope.actionme = function(){
var num = parseFloat ($scope.contractDetailsScreen.percent);
if(1 == num) {
$scope. result = "Matched";
} else {
$scope.result = "not Matched";
}
};
工作Demo