var destino = '#myContainer';
var file = 'my-file.html'; //file exists in folder.
var seccion = 'myTarget'; //
var nivel = 1; // #myTarget_1 exists in document
$('.load').show();
console.log('before');
$(destino).load('/'+file+' #'+seccion+'_'+nivel, function(response, status, xhr){
$('.load').hide();
console.log(response);
console.log(status);
}
console.log('done');
before
done
爲什麼更多鈔票,這並不返回任何東西?沒有錯誤或內容。如果有錯誤,我能否以某種方式阻止錯誤發生?
您的代碼不顯示變量'archivo'。這是一個錯字還是你打算使用'file'? – 2012-01-17 11:12:25
你是對的我正在翻譯一些代碼,以英文爲更好的理解。謝謝 – 2012-01-17 11:15:00
使用$ .ajaxSetup()來設置所需的回調。 – deostroll 2012-01-17 11:19:43