去掉通知页面的字符限制

This commit is contained in:
cxt 2015-12-21 13:20:09 +08:00
parent 4d75338710
commit e86f9f9aeb
2 changed files with 4 additions and 4 deletions

View File

@ -299,12 +299,12 @@ function regexDescription()
$("#description_notice_span").focus();
return false;
}
else if(name.length >=6000){
/*else if(name.length >=6000){
$("#description_notice_span").text("描述最多3000个汉字(或6000个英文字符)");
$("#description_notice_span").css('color','#ff0000');
$("#description_notice_span").focus();
return false;
}
}*/
else
{
$("#description_notice_span").text("填写正确");

View File

@ -248,13 +248,13 @@ function regexDescription() {
$("#description_notice_span").focus();
return false;
}
else if (name.length > 10000)
/*else if (name.length > 10000)
{
$("#description_notice_span").text("描述超过10000个字符");
$("#description_notice_span").css('color', '#ff0000');
$("#description_notice_span").focus();
return false;
}
}*/
else {
$("#description_notice_span").text("填写正确");
$("#description_notice_span").css('color', '#008000');