Dies ist meine erste Frage auf Stackoverflow. Ich frage mich nur, warum mein getJSON-Code nicht mit jQuery 1.4.2 funktioniert, es funktionierte reibungslos mit jQuery 1.3.2 obwohl
Hier ist also mein Code
$(document).ready(function(){
$('td.hps_ajax a').click(function() {
id = this.id.replace(/.*hps_ajax/,'');
if(confirm('Anda yakin mau menghapus record ini?'))
$.getJSON('../admin/media_admin/ajaxHapus/'+id, remove_row);
return false;
});
})
function remove_row(data) {
if(data.sukses == '1') {
$('td.hps_ajax a#hps_ajax'+data.id).closest('tr').fadeOut('slow',function() {
$(this).remove();
});
} else {
alert('Gagal menghapus File.');
}
}
Der getJSON-Link ist ein CodeIgniter App Link. Weiß jemand, warum das nicht mehr funktioniert?
0 Stimmen
Können Sie eine Beispiel-Json-Antwort anhängen, die Ihre Url beim Aufruf erzeugt? Höchstwahrscheinlich ist es einfach ungültiges json
0 Stimmen
Drei Mal "funktioniert nicht"? Ernsthaft?