去掉通知页面的字符限制
This commit is contained in:
parent
4d75338710
commit
e86f9f9aeb
|
@ -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("填写正确");
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue