2016-01-27 55 views
-1

我有2個files.File1.php和File2.php。我在File1.php中創建了具有File2.php內容的空div1標籤。 File2.php包含一個帶有編輯按鈕的表格,位於div2標籤內。當我點擊特定的編輯按鈕時,div2標籤應該得到更新,並應刷新,而無需使用jquery刷新整個頁面。請提出任何想法...如何刷新jquery中的div標籤內容

File1.php

<div id="div1"> 
    //contains File2.php contents(below table) 
</div> 

File2.php

enter image description here

+0

您可以使用ajax調用來做到這一點。 –

回答

0

在demo_test.php使用AJAX調用

$("button").click(function(){ 
    $.ajax({url: "demo_test.php", success: function(result){ 
     $("#File2_content").html(result); 
    }}); 
}); 

你必須針對您的流程fi les

+0

謝謝......我會檢查出來的.. –

+0

如果答案沒問題,你可以打勾這個答案作爲正確答案嗎? :) –

+0

你確定..但它顯示'#File2_content'兩次.. –