function checkMoneyAdd() {
var budgetValue=document.getElementById('budgetValue').value;
var contractValue=document.getElementById('contractValue').value;
if(parseInt(contractValue)>parseInt(budgetValue)){
alert("输入有误 合同金额<=预算金额");
return false;
}else{
return true;
}
}
var budgetValue=document.getElementById('budgetValue').value;
var contractValue=document.getElementById('contractValue').value;
if(parseInt(contractValue)>parseInt(budgetValue)){
alert("输入有误 合同金额<=预算金额");
return false;
}else{
return true;
}
}