我正在调用 jquery ajax 到一个页面,如下所示
<script type="text/javascript">
function Showgrid() {
$.ajax({
type: "GET",
url: "popup.aspx",
contentType: "application/json; charset=utf-8",
data: {locale: 'en-US' },
dataType: "json",
success: function (data) {
$("#target").html(data.d);
},
error: function (jqXHR, textStatus, errorThrown) {
alert(jqXHR.responseText);
}
});
}
</script>
在 popup.aspx 页面加载时,我将代码编写为
protected void Page_Load(object sender, EventArgs e)
{
Response.ContentType = "text/plain";
Response.Write(Request.QueryString[0]);
Response.Write(DateTime.Now.ToString());
Response.End();
}
我得到响应,但不是在成功方法中,而是在错误函数中 请提出问题所在