29 lines
492 B
JavaScript
29 lines
492 B
JavaScript
/**
|
|
* Created by cxt on 2016/12/21.
|
|
*/
|
|
|
|
//提交新建竞赛
|
|
function submit_new_contest()
|
|
{
|
|
if(regex_contest_name('new'))
|
|
{
|
|
$("#new_contest").submit();
|
|
}
|
|
}
|
|
|
|
//验证课程名称
|
|
function regex_contest_name(str)
|
|
{
|
|
var name = $.trim($("#"+str+"_course_name").val());
|
|
if(name.length < 2)
|
|
{
|
|
$("#"+str+"_course_name_notice").show();
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
$("#"+str+"_course_name_notice").hide();
|
|
return true;
|
|
}
|
|
}
|