我已经在stackoverflow的帮助下开发了这段代码。我添加了一个额外的部分,它比较两个不同数组的两个数字,在这种情况下是offhire1和pro2。 问题出在我的代码中:
(offhire1[i].value > pro2[i].value)
如果数字匹配,它只允许我控制,即100 = 100。但是我所追求的是识别任何大于值仅为120的数字> 100.我已经测试过这些值是否正在传递。 我在这里犯了什么错误,任何人都可以将其搞砸。
function validateoffhire(form) {
var num1 = document.getElementById('num1');
var test2Regex = /^[0-9 ]+(([\,\.\- ][a-zA-Z ])?[a-zA-Z]*)*$/;
var accumulator = 0;
var num2 = num1.value;
var i=0;
var offhire1 = [];
var pro2 =[];
for(var i = 0; i < num2; i++) {
offhire1[i] = document.getElementById('offhire1' + i);
pro2[i] = document.getElementById('pro2' + i);
var offhire2 = offhire1[i].value;
// var pro3 = pro2[i].value;
if(!offhire2.match(test2Regex)){
inlineMsg('offhire1' + i,'This needs to be an integer',10);
return false;
}
else if (offhire1[i].value > pro2[i].value) {
alert("You entered: " + pro2[i].value)
inlineMsg('offhire1' + i,'You have off hired to many items',10);
return false;
}
else{
accumulator += parseInt(offhire2);
}
}
if(accumulator <= 0){
inlineMsg('num1' ,'You have not off Hired any items',10);
return false;
}
return true;
}
答案 0 :(得分:1)
我不太确定我会跟着你。如果数字相同,则该语句将不匹配。
您的代码中的一个问题是您要比较字符串,而不是数字。您可能希望将其更改为:
(parseInt(offhire1[i].value) > parseInt(pro2[i].value))