baslik; ?>
add




ders_adi; ?>

bolum_adi; ?>







JS Kodum


function belgeKaydet() {
var belge_id = $(".belge").attr("id");
$.ajax({
url: "",
type: "post",
dataType: "json",
data: {
belge_id: belge_id
},
success: function(resp) {
if (resp.sonuc == "ok") {
M.toast({
html: 'Belge başarıyla kaydedildi.',
displayLength: 2000
});
setTimeout(function() {
window.location = "";
}, 2000);
} else if (resp.hata == "hata") {
M.toast({
html: 'Opps! Teknik bir hata oluştu.',
displayLength: 2000
});
}
}

});
}