为什么ajax回调无法执行success而是error

ajax代码如下:vartxtname=document.getElementById("ctl00_ContentPlaceHolder1_txtuser").valu... ajax代码如下:
var txtname=document.getElementById("ctl00_ContentPlaceHolder1_txtuser").value;
if (txtname != "") {
jQuery.ajax({
type: "GET",
url: "adcheckusera.aspx",
data: "u=" + txtname,
dataType: "json",
success: function(msg) {
alert(msg.du);
//
},
error: function(e) {
alert(e);
}
})
}
后台代码:
protected void Page_Load(object sender, EventArgs e)
{
string uname = this.getRequest("u");
string retxt = "";
string sql = "select username from webuser where username = '" + uname + "'";
DataTable dt = AccessDB.GetTable(sql);
if (dt.Rows.Count == 1)
retxt = "t";
else
retxt = "f";
string returntxt = "{\"du\":\"" + retxt + "\"}";
Response.Write(returntxt);
}
后台的retxt也能正常赋值为t或f,但是ajax却回调为error里的函数,输出的alert为[object xmlhttprequest]
展开
 我来答
不晓得叫啥子名字勒
2015-04-16 · TA获得超过186个赞
知道答主
回答量:91
采纳率:100%
帮助的人:24.4万
展开全部
你的 dataType: "json", 也就是需要返回一个json格式的数据,如果返回其他格式的都会判断为错误,就会执行error里的句子
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式