document.write(''); function assess_form(){ if( $('#name').val() ==''){ alert('[提示]请填写姓名'); $('#name').focus(); return false; } if( $('#birthday').val() ==''){ alert('[提示]请填写出生年月'); $('#birthday').focus(); return false; } if( $('#tel').val() ==''){ alert('[提示]请填写您的电话'); $('#tel').focus(); return false; } if( !isEmail($('#email').val())){ alert('[提示]请认真填写您的邮箱。'); $('#email').focus(); return false; } } document.write('
');