function myfun(){
     var other_amount=document.getElementById("amount").value; if(isNaN(other_amount) || other_amount==""){
alert("请输入数字.");
document.all.form1.other_amount.focus();
return;
}
var other_amount_verify=(other_amount*100);
if(other_amount<0 || other_amount>500||other_amount_verify.indexOf(".")!=-1){
alert(other_amount+":other_amount="+other_amount_verify);
alert("请输入介于0.1到500元之间的数字.");
document.all.form1.other_amount.focus();
return;
}

 }问:为啥20.4也弹出"请输入介于0.1到500元之间的数字.",30.4、。。都没有!