3
我試圖發送一個ajax
delete
請求到這個URL 但得到一個彈出錯誤。瀏覽器出現錯誤,當AJAX重定向
$("#dialog-confirm").dialog({
resizable: false,
height:140,
modal: true,
buttons: {
"Delete": function() {
//To show the loader
//Ajax call to delete the data
$.ajax({
type: "DELETE",
url: window.location.pathname + id + '/centers/' + c,
contentType: 'application/html; charset=utf-8',
data: {
dc : dc,
},
success: function(){} }); });
錯誤是
該網頁被重定向到新的位置。你想重新發送你輸入的表單數據到新的位置嗎?
https://my2.v2.domain.com/grd/net/lb/checker/Env2/centers/11
(這是一個演示網址到我發送。)
在此先感謝
請提供更多信息 - 什麼是觸發AJAX?你實際使用哪些代碼? – Ian
鏈接不工作 –
該網址是演示網址 –