项目--邀请--发送邮件邀请用户,对输入的邮箱名进行判断,同时,修改提示样式

This commit is contained in:
ouyangxuhua 2015-09-07 15:23:34 +08:00
parent 1ba0c86828
commit ef011ad473
2 changed files with 15 additions and 5 deletions

View File

@ -24,16 +24,24 @@
if(email == "")
{
$("#valid_email").text("<%= l(:label_input_email_blank)%>");
return false;
}
else if (filter.test(email)) {
$("#valid_email").html("");
return true;
else if(!filter.test(email))
{
$("#valid_email").text("<%= l(:label_email_format_error)%>");
return false;
}
else if(email.split('@')[0].length >= 20)
{
$("#valid_email").text("邮箱名过长,最长为20个字符");
return false;
}
else
{
$("#valid_email").text("<%= l(:label_email_format_error)%>");
$("#valid_email").text("");
return true;
}
return false;
}
function senderEmail(obj)

View File

@ -418,6 +418,8 @@ div.flash.notice {
background-color: #dfffdf;
border-color: #9fcf9f;
color: #005f00;
word-wrap: break-word;
word-break: break-all
}
div.flash.warning, .conflict {