我电脑上使用jquery中的ajax无法请求到html,显示404错误。

2025-01-05 22:08:05
推荐回答(2个)
回答1:

你这个最外面还差什么东西吧。你这个不是jquery的ajax请求??
应该差个$(function(){
.ajax({type:"GET",//请求方式
url:url,//请求的URL
data:{val:username.val()},//请求的提交到服务器的数据
success:function(data, textStatus){//请求成功是处理数据
if(textStatus=="success"){alert(textStatus);
$("#resultInfo").html(data)
}
},
statusCode:{404:function(){alert("页面未找到!");},200:function(){alert("请求页面成功!")}//验证响应信息
},
error:function(objXMLHttpResponse, textStatus, errorThrown){//请求失败显示的错误信息
$("#errorInfo").text("ResponseInfo:"+objXMLHttpResponse.status+";"
+"textStatus:"+textStatus+";"
+"errorThrown:"+errorThrown)
},
async:true,//是否异步发送数据
cache:true,//是否缓存数据
dataType:"html"//服务器返回的数据类型
});
});

回答2:

你从根目录开始写试试