代码之家  ›  专栏  ›  技术社区  ›  Prabhu Murthi

刷新或清除IE7中Ajax“temp”内容的最佳方法

  •  1
  • Prabhu Murthi  · 技术社区  · 14 年前

    任何人都能告诉我吗,我需要在每次使用PHP运行Ajax进程时清除“temp”文件。

    2 回复  |  直到 14 年前
        1
  •  1
  •   Chakrapani    14 年前

    嗨,请在header.tpl文件中尝试此代码。或者将其用作服务器端脚本。请看这里。

    <meta http-equiv="imagetoolbar" content="no" />
    <meta http-equiv="Pragma" content="no-cache" />
    <meta http-equiv="Expires" content="Tue,01 Dec 1990 06:30:00 GMT">
    

    echo '<meta http-equiv="imagetoolbar" content="no" />
    <meta http-equiv="Pragma" content="no-cache" />
    <meta http-equiv="Expires" content="Tue,01 Dec 1990 06:30:00 GMT">';
    
        2
  •  1
  •   James    14 年前

    为了避免缓存,可以向URL附加一个唯一的数字,例如

    var url = 'something.php?' + +new Date;
    url; // => "something.php?1273750710315"