1

我使用jquery.Pagination.js作爲分頁功能。jQuery ajax成功方法在ie8中工作,但不在ie9中?

的代碼如下:

  $(document).ready(function() { 
       var numItems = 69; 
       var perPage = 25; 
       $("#pagination").pagination({ 
        items: numItems, 
       itemsOnPage: perPage, 
       cssStyle: "light-theme", 
       onPageClick: function(pageNumber) { 
        var startFrom = (perPage * pageNumber - perPage) + 1; 

        $.ajax({ 
         url: 'modules/myModule/models/paginationData.php', 
         type: 'POST', 
         data: { start : startFrom , type : 'unassigned' }, 
         beforeSend: function(){ 
          $(".loading_img").show(); 
         }, 
         success: function(data) { 
          $("tbody#unassignedData").html(""); 
          $("tbody#unassignedData").html(data); 

          $("body").find("a.summary").popover(); 

         }, 
          complete: function(){ 
         $("img.loading_img").hide(); 
        }, 
         error: function(e) { 
          console.log(JSON.stringify(e)); 
         } 
        }); 
       } 
      }); 
     }); 

控制檯說:

LOG: {"readyState":0,"status":0,"statusText":"ReferenceError: 'FormData' is undefined"}

如果FormDataundefined和IE9不支持,爲什麼它是在IE8的工作?

+0

錯誤與您顯示的代碼無關。你是否試圖在代碼庫中的任何位置創建一個FormData對象?這很奇怪,因爲FormData只在IE10和更高版本中被支持,所以它在IE8中工作 –

回答

0

此問題已解決。

url: 'modules/myModule/models/paginationData.php', 
type: 'POST', 
data: { start : startFrom , type : 'unassigned' }, 

url: 'modules/myModule/models/paginationData.php&type=unassigned&start'+startForm, 
type: 'GET' 

替換,因爲IE9不支持FORMDATA。

相關問題