|
|
|
@ -132,3 +132,49 @@ function search_homework_by_name(url){
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//提交新建作品
|
|
|
|
|
function new_student_work()
|
|
|
|
|
{
|
|
|
|
|
if(regexStudentWorkName()&®exStudentWorkDescription())
|
|
|
|
|
{$("#new_student_work").submit();}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function edit_student_work(id)
|
|
|
|
|
{
|
|
|
|
|
if(regexStudentWorkName()&®exStudentWorkDescription())
|
|
|
|
|
{$("#edit_student_work_" + id).submit();}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//验证作品名称
|
|
|
|
|
function regexStudentWorkName()
|
|
|
|
|
{
|
|
|
|
|
var name = $.trim($("#student_work_name").val());
|
|
|
|
|
|
|
|
|
|
if(name=="")
|
|
|
|
|
{
|
|
|
|
|
$("#student_work_name_span").text("作品名称不能为空");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
$("#student_work_name_span").text("");
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function regexStudentWorkDescription()
|
|
|
|
|
{
|
|
|
|
|
var name = $.trim($("#student_work_description").val());
|
|
|
|
|
|
|
|
|
|
if(name=="")
|
|
|
|
|
{
|
|
|
|
|
$("#student_work_description_textarea").text("作品描述不能为空");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
$("#student_work_description_textarea").text("");
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|