- var mail=/^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;
- var tel=/^(d3,4|d{3,4}-)?d{7,8}$/;
- var phone=/^1[34578]d{9}$/;
- if(tjPhone.match(phone)==null){
- alert("您的手机格式不正确");
- return;
- }
- if(tjTel.match(tel)==null){
- alert("您的固定电话格式不正确");
- return;
- }
- if(tjEmail.match(mail)==null){
- alert("您的邮箱格式不正确");
- return;
- }