This commit is contained in:
huang 2015-11-10 17:36:22 +08:00
commit 419b3f4036
2 changed files with 4 additions and 4 deletions

View File

@ -128,8 +128,8 @@
$("#error").html("主题 过长(最长为 50 个字符)").show();
return false;
}
if(memo_content.html().length > 30000){
$("#error").html("内容 过长(最长为 30000 个字符)").show();
if(memo_content.html().length > 20000){
$("#error").html("内容 过长(最长为 20000 个字符)").show();
$("html,body").animate({scrollTop:$("#error").offset().top},1000)
return false;
}

View File

@ -7,8 +7,8 @@
$("#error").html('主题不能超过50个字符').show();
return;
}
if(memo_content.html().length > 30000){
$("#error").html("内容 过长(最长为 30000 个字符)").show();
if(memo_content.html().length > 20000){
$("#error").html("内容 过长(最长为 20000 个字符)").show();
$("html,body").animate({scrollTop:$("#error").offset().top},1000)
return false;
}