新建课程界面中关于学时的输入提示不合理,提示为只能输入数字,但是输入负数或小数时不能执行提交操作,应该修改为只能输入正整数。

This commit is contained in:
cxt 2016-04-15 17:10:44 +08:00
parent eeecc5ad08
commit 8611fbbdec
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ function regex_course_class_period()
}
else
{
$("#course_class_period_notice").html("学时总数必须为");
$("#course_class_period_notice").html("学时总数必须为正整数");
$("#course_class_period_notice").show();
return false;
}