Ajax kullanarak php dosyası yüklemek nasıl.

1 Cevap php

I try to load a php file called summary.template.hp when the content in class profi is clicked and load changepass.template.php when the content of class changepass is clicked.

Ateş yükleme hiçbir sorun yoktur. Ancak Internet Explorer 7 summary.template.php dosyası yüklenirken ancak changepass.template.php dosya yükleme değil. Bana çözüm ver. I bir sonraki sayfaya yüklemeden önce önceki sayfayı boşaltmak zorunda olsun?. Eğer evet ise, o zaman bana sayfayı boşaltılması için bazı ipuçları vermek.

$(function() {
  $(".profi").click(function() {
    $(".block1").load("views/summary.template.php");
     return false;
  });
});


 $(function() {
  $(".changepass").click(function() {
    $(".block1").load("views/changepass.template.php");
    return false;
  });
});

1 Cevap

A ColdFusion developer noted a somewhat similar situation here: http://stackoverflow.com/questions/1023442/jquery-load-function-ie-dynamic-url-hair-loss -- so, is it possible that changepass.template.php script is returning headers or other code that causes IE to fail? Check the exact server response that's generated from changepass.template.php in Firebug.

Bu konuda?

Whether i have to unload the previous page before loading the next page?

Önce bunu IE changepass bağlantı çalışmaları tıklatın mı olur?

Bu gerçekten gerekli olmamalı ama IE öngörülemeyen olabilir çünkü, siz deneyebilirsiniz:

$(".block1").empty().load("views/changepass.template.php");