You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
990 B
JavaScript
51 lines
990 B
JavaScript
//添加试卷JS
|
|
$(function () {
|
|
|
|
|
|
});
|
|
|
|
|
|
//单击试题库按钮
|
|
function ClickTitle() {
|
|
|
|
}
|
|
//单击选择班级按钮
|
|
function ClickClass() {
|
|
dialogHelper.Show('popTrainingClass', 350);
|
|
|
|
var TrainExamId = $.getUrlParam("TrainExamId");
|
|
if (TrainExamId != null) {
|
|
$.ajax({
|
|
url: "/Teacher/TrainExam/SelectClass",
|
|
async: false,
|
|
type: "POST",
|
|
data: {
|
|
TrainExamId: TrainExamId,
|
|
},
|
|
success: function (data) {
|
|
if (data.Data != "" || data.Data != null) {
|
|
$.each(data, function (i, n) {
|
|
ClassHelper.Add(n);
|
|
});
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
//单击选择题型按钮
|
|
function ClickTitleType() {
|
|
|
|
}
|
|
|
|
|
|
//点击班级确定按钮
|
|
function ClassConfirm() {
|
|
$("#BG").attr("display", "none");
|
|
$("#BG").hide();
|
|
}
|
|
|
|
|
|
//返回
|
|
function ComeBack() {
|
|
window.history.back(-1);
|
|
} |