function submit_check(){
if (window.document.hzinput_form.m_netname.value==""){
alert("请输入你的昵称!");
document.hzinput_form.m_netname.focus();
return false;
}
if (window.document.hzinput_form.m_age.value==""){
alert("请输入你的年龄!");
document.hzinput_form.m_age.focus();
return false;
}
if (window.document.hzinput_form.m_email.value==""){
alert("请输入你的E_mail!");
document.hzinput_form.m_email.focus();
return false;
}
if (window.document.hzinput_form.rent_money.value==""){
alert("请输入你的承受月租金!");
document.hzinput_form.rent_money.focus();
return false;
}
if (isNaN(window.document.hzinput_form.m_age.value)){
alert("年龄必须是数字!");
window.document.hzinput_form.m_age.value="";
document.hzinput_form.m_age.focus();
return false;
}
if (isNaN(window.document.hzinput_form.rent_money.value)){
alert("承受月租金必须是数字!");
window.document.hzinput_form.rent_money.value="";
document.hzinput_form.rent_money.focus();
return false;
} }
function mod_info(){
if (!submit_check()){
alert("失败");
}else{
alert("成功");
}
}帮我看看