我有一個頁面彈出一個模式,並使用hidden.bs.modal
事件,我想通過ajax重新加載相同的頁面內容,即body
標籤html
。我有以下代碼:Bootstrap模式隱藏事件通過ajax重新加載正文
$("#actions-modal").on('hidden.bs.modal', function(){
alert(document.location)
$.ajax({
url: document.location,
type: "get",
sucess: function(data){
alert('hhhh')
return $("#body1").html($(data).find('#body1'));
},
error: function(xhr){
console.log(xhr);
}
})
})
在上面的代碼中,alert(document.location)
工作正常。但是,在ajax 的錯誤處理程序中,ajax的處理程序success
和console.log(xhr)
都不能正常工作。即沒有success
和error
!另外,瀏覽器控制檯中沒有任何錯誤。