Skip to content

Instantly share code, notes, and snippets.

@YidaChen
Created June 28, 2016 08:28
Show Gist options
  • Save YidaChen/aa073247aa0d1781b9620488a96fe40b to your computer and use it in GitHub Desktop.
Save YidaChen/aa073247aa0d1781b9620488a96fe40b to your computer and use it in GitHub Desktop.
ajax.js
$.ajax({
url: 'ajax/edit/marker.php',
type: 'POST',
dataType: 'json',
data: {action: 'delete', type: typeStr, id: id}
})
.done(function(data) {
if(data){
markersType[id].setMap(null);
delete markersType[id];
swal("刪除成功!", name+" 已經刪除。", "success");
}
})
.fail(function() {
//alert('刪除失敗');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment