$(function(){
$("#email").blur(function () {
$("#spinfo").html("");
if ($(this).val() == '') {
$("#spinfo").html("<font color='red'> 邮箱不能为空</font>");
$(this).focus();
}else {
if (/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/.test($(this).val()) == false) {
$("#spinfo").html("<font color='red'> 邮箱格式不正确,请重新填写</font>");
$(this).focus();
}
}
})
});