名称和描述不能为空的提示信息应该分开写

This commit is contained in:
lizanle 2015-09-23 09:31:49 +08:00
parent c05b1f5959
commit 9d6263a9d1
1 changed files with 10 additions and 3 deletions

View File

@ -68,10 +68,17 @@
function check_and_submit(doc){
$("#error").html('').hide();
check_forum_name();
if( $("textarea[name='forum[name]']").val().trim() == "" || $("textarea[name='forum[description]']").val().trim() == "" ){
$("#error").html("名称和描述未填写正确").show();
if( $("textarea[name='forum[name]']").val().trim() == "" && $("textarea[name='forum[description]']").val().trim() != "" ){
$("#error").html("名称不能为空").show();
return;
}else{
} else if( $("textarea[name='forum[description]']").val().trim() == "" && $("textarea[name='forum[name]']").val().trim() != "" ){
$("#error").html("描述不能为空").show();
return;
}else if($("textarea[name='forum[description]']").val().trim() == "" && $("textarea[name='forum[name]']").val().trim() == ""){
$("#error").html("名称和描述不能为空").show();
return;
}
else{
doc.parent().parent().submit();
}
}