2015-09-12 97 views
0

這是我使用從一個php文件加載網頁的初始數據與砌體佈局AJAX

$.ajax({ 
     type: "post", 
     url: "content.php", 
     data: somevariable, 
     dataType: "text",     
     success: function(response) { 
     $(this).parent().find(".loadingdataimage").hide(); 
     $content.html(response); 
     }.bind(this) 
    }); 

現在得到的數據我怎樣才能使這個代碼從頁的初始數據的AJAX content.php文件每當頁面加載

+1

我不知道我理解的問題,正確的,但我會假設你只是想調用這段代碼中的「文件準備」處理程序。 – Octopoid

+0

是當頁面加載,以便我可以從數據庫使用ajax調用 –

+0

從數據庫中獲取數據將幫助,如果我直接使用文檔準備? @octopoid –

回答

1

@Octopoid是正確的解決方案,下面教你如何使用jQuery做一個例子:

$.ready(function() { 
    $.ajax({ 
    type: "post", 
    url: "content.php", 
    data: somevariable, 
    dataType: "text",     
    success: function(response) { 
     $(this).parent().find(".loadingdataimage").hide(); 
     $content.html(response); 
    }.bind(this) 
    }); 
}); 

如果你想邏輯分離成一個功能,你可以再打電話,你可以做到這樣的:

var refresh = function() { 
    $.ajax({ 
    type: "post", 
    url: "content.php", 
    data: somevariable, 
    dataType: "text",     
    success: function(response) { 
     $(this).parent().find(".loadingdataimage").hide(); 
     $content.html(response); 
    }.bind(this) 
    }); 
} 
$.ready(refresh);