Bazı başarılı Ajax formu üzerine bir div içerik göndermek güncellemek için bir php dosyası eklemek için nasıl tavsiyelerde misiniz?
Bu çalışır:
jQuery(form).ajaxSubmit({
success: function() {
$('#ajaxRenew').load('script.php');
}
});
but my script.php requires headers, etc, from the page it gets included into (it works ok as "Include" normally), and with .load it does not get them, producing warnings.
Ajax (. Yerine?) Bu durumda kullanılacak olduğunu okudum, ama ben bütün gün çalışıyorum ve işe alınamıyor.
Ben böyle bir şey gerekiyor:
jQuery(form).ajaxSubmit({
success: function() {
$('#ajaxRenew').replace('script.php');
}
});
Ben sorumu anlamak umuyoruz. Teşekkür ederiz!