我希望在我的ajax调用返回成功后重定向。我尝试了window.location
,window.location.href
,self.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函数返回成功。我该怎么做才能重定向目标网页?
答案 0 :(得分:2)
window.location
效果很好。问题是你把它当成一种功能。它不是一个功能,你只需分配给它:
window.location = "http://localhost:59508/trunk/abs.aspx?hid=" + _iHastaId;
答案 1 :(得分:0)
在我看来,就像你在代码中使用jQuery Mobile一样。
因此,您还可以使用$.mobile.changePage
重定向到新页面。
请在此处查看参考:http://api.jquerymobile.com/jQuery.mobile.changePage/