代码测试改用新的提示框
This commit is contained in:
parent
c0de43ecc0
commit
93fb4441d8
|
@ -11,11 +11,17 @@ $(function(){
|
||||||
var title = $('#program-title').val();
|
var title = $('#program-title').val();
|
||||||
|
|
||||||
if (!src) {
|
if (!src) {
|
||||||
alert('请输入正确的代码');
|
// alert('请输入正确的代码');
|
||||||
|
|
||||||
|
var htmlvalue = "</br><div style='width:550px;text-align:center'>请输入正确的代码!</div></br><div style='width:67px; margin:0 auto; text-align:center'><a href='javascript:void(0);' class='Blue-btn' onclick='hideModal()'>确定</a></div>";
|
||||||
|
pop_up_box(htmlvalue,580,30,50);
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!title) {
|
if (!title) {
|
||||||
alert('请输入标题');
|
// alert('请输入标题');
|
||||||
|
var htmlvalue = "</br><div style='width:550px;text-align:center'>请输入标题!</div></br><div style='width:67px; margin:0 auto; text-align:center'><a href='javascript:void(0);' class='Blue-btn' onclick='hideModal()'>确定</a></div>";
|
||||||
|
pop_up_box(htmlvalue,580,30,50);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
@ -78,8 +84,8 @@ $(function(){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else if (data.status==-3){
|
else if (data.status==-3){
|
||||||
alert("对不起,服务器繁忙请稍后再试!");
|
// alert("对不起,服务器繁忙请稍后再试!");
|
||||||
var htmlvalue = "</br><div style='width:550px;text-align:center'>对不起,服务器繁忙请稍后再试!</div>";
|
var htmlvalue = "</br><div style='width:550px;text-align:center'>对不起,服务器繁忙请稍后再试!</div></br><div style='width:67px; margin:0 auto; text-align:center'><a href='javascript:void(0);' class='Blue-btn' onclick='hideModal()'>确定</a></div>";
|
||||||
pop_up_box(htmlvalue,580,30,50);
|
pop_up_box(htmlvalue,580,30,50);
|
||||||
$('#test-program-btn').show();
|
$('#test-program-btn').show();
|
||||||
return;
|
return;
|
||||||
|
@ -99,10 +105,8 @@ $(function(){
|
||||||
|
|
||||||
if (data.status==0 && is_test != 'true') {
|
if (data.status==0 && is_test != 'true') {
|
||||||
if (typeof cb == 'function') {cb(data);$('#test-program-btn').show(); return;}
|
if (typeof cb == 'function') {cb(data);$('#test-program-btn').show(); return;}
|
||||||
var r=confirm("答题正确,是否立刻提交?");
|
var htmlvalue = "</br><div style='width:550px;text-align:center'>答题正确,是否立刻提交?</div></br><div style='width:164px; margin:0 auto; text-align:center'><a href='javascript:void(0);' class='Blue-btn fl' onclick='submit_code()'>确定</a><a href='javascript:void(0);' class='Blue-btn fl' onclick='hideModal()'>取消</a></div><script>function submit_code(){$('.HomeWorkCon form').submit();hideModal();}</script>";
|
||||||
if (r) {
|
pop_up_box(htmlvalue,580,30,50);
|
||||||
$(".HomeWorkCon form").submit();
|
|
||||||
}
|
|
||||||
$('#test-program-btn').show();
|
$('#test-program-btn').show();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -119,11 +123,11 @@ $(function(){
|
||||||
).fail(function(xhr, status){
|
).fail(function(xhr, status){
|
||||||
if(status == 'timeout'){
|
if(status == 'timeout'){
|
||||||
// alert("您的答案超时了, 请检查代码是否存在死循环的错误.");
|
// alert("您的答案超时了, 请检查代码是否存在死循环的错误.");
|
||||||
var htmlvalue = "</br><div style='width:550px;text-align:center'>您的答案超时了, 请检查代码是否存在死循环的错误!</div>";
|
var htmlvalue = "</br><div style='width:550px;text-align:center'>您的答案超时了, 请检查代码是否存在死循环的错误!</div></br><div style='width:67px; margin:0 auto; text-align:center'><a href='javascript:void(0);' class='Blue-btn' onclick='hideModal()'>确定</a></div>";
|
||||||
pop_up_box(htmlvalue,580,30,50);
|
pop_up_box(htmlvalue,580,30,50);
|
||||||
} else {
|
} else {
|
||||||
// alert("对不起,服务器繁忙请稍后再试!");
|
// alert("对不起,服务器繁忙请稍后再试!");
|
||||||
var htmlvalue = "</br><div style='width:550px;text-align:center'>对不起,服务器繁忙请稍后再试!</div>";
|
var htmlvalue = "</br><div style='width:550px;text-align:center'>对不起,服务器繁忙请稍后再试!</div></br><div style='width:67px; margin:0 auto; text-align:center'><a href='javascript:void(0);' class='Blue-btn' onclick='hideModal()'>确定</a></div>";
|
||||||
pop_up_box(htmlvalue,580,30,50);
|
pop_up_box(htmlvalue,580,30,50);
|
||||||
}
|
}
|
||||||
$('#test-program-btn').show();
|
$('#test-program-btn').show();
|
||||||
|
@ -142,20 +146,30 @@ $(function(){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if($('.ProResult .ProResultTop').length<=0){
|
if($('.ProResult .ProResultTop').length<=0){
|
||||||
var r=confirm("测试后才能提交,是否立刻测试?");
|
// var r=confirm("测试后才能提交,是否立刻测试?");
|
||||||
if (r) {
|
// if (r) {
|
||||||
|
// test_program();
|
||||||
|
// }
|
||||||
|
|
||||||
|
var htmlvalue = "</br><div style='width:550px;text-align:center'>测试后才能提交,是否立刻测试?</div></br><div style='width:164px; margin:0 auto; text-align:center'><a href='javascript:void(0);' id='code-test-button' class='Blue-btn fl'>确定</a><a href='javascript:void(0);' class='Blue-btn fl' onclick='hideModal()'>取消</a></div>";
|
||||||
|
pop_up_box(htmlvalue,580,30,50);
|
||||||
|
$("#code-test-button").on('click',function(){
|
||||||
test_program();
|
test_program();
|
||||||
}
|
hideModal();
|
||||||
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!tested) {
|
if (!tested) {
|
||||||
test_program(function(data){
|
test_program(function(data){
|
||||||
if (data.status!=0) {
|
if (data.status!=0) {
|
||||||
var r=confirm("测试不通过,是否强制提交?");
|
// var r=confirm("测试不通过,是否强制提交?");
|
||||||
if (!r) {
|
// if (!r) {
|
||||||
return;
|
// return;
|
||||||
}
|
// }
|
||||||
|
var htmlvalue = "</br><div style='width:550px;text-align:center'>测试不通过,是否强制提交?</div></br><div style='width:164px; margin:0 auto; text-align:center'><a href='javascript:void(0);' class='Blue-btn fl' onclick='submit_code()'>确定</a><a href='javascript:void(0);' class='Blue-btn fl' onclick='hideModal()'>取消</a></div><script>function submit_code(){$('.HomeWorkCon form').submit();hideModal();}</script>";
|
||||||
|
pop_up_box(htmlvalue,580,30,50);
|
||||||
|
return;
|
||||||
|
|
||||||
};
|
};
|
||||||
$(".HomeWorkCon form").submit();
|
$(".HomeWorkCon form").submit();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue