jquery .ajax缓存问题

时间:2010-11-10 19:37:40

标签: jquery ajax

我有以下内容:

        $.ajax({
      type: "post",        
    url: "something.cfm",
    data: formData,        
     cache: false,       
   success: function(result) {
                   $('#formSub').html('<input type="button" name="btnSave" id="btnSave" class="submitButton save" value="Save" disabled="disabled"/>');
           },
           error: function(xmlHttpRequest, status, err) {
    confirm('Error!' + err );
  }
 });

在IE8或IE7上,有时成功功能不会运行,并且不会出现禁用的btnSave。因此,人们不断提交相同的表单,在处理另一个应用程序时,我发现cache:false似乎不起作用。

0 个答案:

没有答案