check.js 464 Bytes
function to_top(id) {
	$.ajax({
		url : BASE+'/check/top/'+id,
		type : 'get',
		async : true,
		error : function() {
			alert('获取错误!');
		},
		success : function(data) {
			window.location.href="../list/1";
		}
	});
}

function to_pass(id) {
	$.ajax({
		url : BASE+'/check/pass/'+id,
		type : 'get',
		async : true,
		error : function() {
			alert('获取错误!');
		},
		success : function(data) {
			window.location.href="../list/1";
		}
	});
}