Ie中的Jquery Ajax只运行一次

时间:2012-02-22 04:02:55

标签: php javascript jquery ajax

我的代码我设置了cache:false仍然在IE中它只运行一次。请帮帮我。

<script type="text/javascript" src="javascripts/jq1.7.js"></script>
<script type="text/javascript">
  $(document).ready(function(){
    $("#butn").click(function(){
      var txt1 = $("#txt1").val();

      $.ajax({
        type: "Post",
        url: "jqueryphp.php",
        dataType: "html",
        data: "txt1="+txt1,
        cache: false,
        success: function(result) {
          $("div").html(result);
        }
      });
    });
  });
</script>
</head>
<body>
  <form>
    <input type="text" id="txt1" /><br />
    <input type="button" id="butn">
  </form>

请帮助我,我被困在这里。它在除IE之外的每个浏览器上都能正常运行

3 个答案:

答案 0 :(得分:1)

尝试类似:


$.ajaxSetup({
  cache: "false"
   });
$.ajax({
   type: "POST",
   url: "jqueryphp.php",
   data: "txt1="+txt1,
   cache: false,
   success: function(result){
     $("div").html(result);
    }
 });

希望有所帮助

答案 1 :(得分:0)

IE是缓存贪心。考虑为每个URL添加时间戳。以下是其他一些选项。 http://formatinternet.wordpress.com/2010/01/14/ie-cache-for-ajax-requests/

答案 2 :(得分:0)

确保调用的文件具有正确的doctype和xmlns声明。

将xmlns id分配给调用中涉及的元素

示例:

还使用:jQuery.post('call.php',{action:“get”}

在此处找到完整的教程:http://vavumi.com/?p=257