现在!!isValid不接受当前余额输入中的任何值。还有另一种方法来验证输入中的值吗? JSFiddle
有问题的功能:
function isValid(entry, a, b)
{
if (isNaN(entry.value) || (entry.value==null) || (entry.value=="") || (entry.value < a) || (entry.value > b)) {
alert("Invalid entry. Your min payment should be between " + a + " and " + b + ".")
return false
}
return true
}
// send entries to validation function
// exit if not valid
if (!isValid(currentBalance, 0, 10000)) {
return false
} else if (!isValid(interest, 0, 30)) {
return false
} else {
return true;
}
if (!isValid(mnth_pay, currentBalance*.02, currentBalance)) {
return false
} else {
console.log("do nothing");
}
答案 0 :(得分:0)
我刚刚调整了你的Fiddle。
当我第一次添加console.msg来获取函数isValid(entry,a,b)处理的值时,我注意到entry.value是未定义的,但是entry与当前输入匹配。
调整为
function isValid(entry, a, b)
{
if (isNaN(entry) || (entry==null) || (entry=="") || (entry < a)
|| (entry.value > b))
{... }
}
似乎解决了这个问题。