我需要重定向到來自響應的頁面。我做了一個Ajax調用,可以處理成功。有html頁面作爲迴應,但是如何將其重定向到該頁面。
這是我的代碼。如何重定向來自ajax請求的響應
$("#launchId").live('click',function(){
var id= $("#id").val();
var data = 'id='+id;
$.ajax({
url: "xyz.json",
type: "post",
data: data,
dataType: 'json',
complete : function(response) {
window.location.href = response;
}
});
});
現場已被棄用! –
@hemanth是響應一個URL? –
在'window.location.href = response;'之前添加'console.log(JSON.stringify(response));'併發布你在這裏獲得的內容。 – techfoobar