0

我想在我的 ajax 调用返回成功后重定向。我试过 window.location, window.location.hrefself.location但页面没有重定向到目标页面。这是我所有的ajax邮政编码:

$(document).on('click', '.btn_Yeni', function (event) {
var date= $("#deSeansTarihi").val();
var _iHastaId= $("#hdnHastaId").val();

date= date.toString().substring(3, 5) + "." + date.toString().substring(0, 2) + "." + date.toString().substring(6, 10);

$.ajax({
    type: "POST",
    url: "KlinikHastalari.aspx/SetNewData",
    data: JSON.stringify({ _dtTarih: date, _id: _iHastaId}),
    dataType: "json",
    async: true,
    contentType: "application/json; charset=utf-8",
    success: function (msg) {
        window.location("http://localhost:59508/trunk/abs.aspx?hid=" + _iHastaId);
    }
});

});

SetNewData 函数返回成功。我应该怎么做才能重定向目标页面?

4

2 回答 2

2

window.location工作得很好。问题是你把它当作一个函数来对待。它不是一个函数,你只需分配给它:

window.location = "http://localhost:59508/trunk/abs.aspx?hid=" + _iHastaId;
于 2013-11-05T10:42:34.620 回答
0

在我看来,您在代码中使用了 jQuery Mobile。因此,您还可以使用$.mobile.changePage重定向到新页面。在此处查看参考:http: //api.jquerymobile.com/jQuery.mobile.changePage/

于 2013-11-05T10:46:47.443 回答