我需要从对数据库进行选择的 JSP 页面中获取一些数据,然后将其放入 div 中。我需要用 ajax 来做到这一点。
这是我的代码:
$(function() {
teste();
});
function teste() {
var v1 = document.getElementById("selCodigo").value;
alert(v1);
$.ajax({
type : "GET",
data : "turma="+v1,
url : "busca-notas.jsp",
success : function(resposta){
alert("DEU CERTO");
},
error : function(xhr, ajaxOptions, thrownError){
alert(xhr.status);
alert(thrownError);
document.getElementById("notas").innerHTML = "ERRO";
}
});
}
我测试了变量v1
和它接收到的必要值,在我的 JSP 页面中,我这样做:
String turmaSelecionada = request.getParameter("turma");
问题是不提供给 div 的 ajax 内容超出了xhr.status
提出的 throwedError 和未找到的 404 错误
谁能帮我?