2012-09-04 49 views
0

我如何需要更改loadPopupManual()以填充DIV #popup_manualcontent.php中的內容?特別是,我需要將content.php中指定的表格插入#popup_manual。該表格必須具有由content.php中的腳本定義的所有功能(某些按鈕)。用其他PHP文件中指定的HTML表格填充DIV容器

test.php的

$(document).ready(function() { 
    loadPopupManual(); 
}); 

function loadPopupManual() { // to load the PopupManual DIV 
    $('#popup_manual').fadeIn("slow"); 
} 

<div id="popup_manual"> 
    // I need to fill this DIV with what I have in 'content.php' 
</div> 

content.php

<?php 
    include_once 'include/connect_db.php'; 

    $query="SELECT * FROM aircrafts;"; 
    $result=execute_query($query); 

?> 

<script type="text/javascript" charset="utf-8"> 
     $(document).ready(function(){ 
      //... 
     } 
</script> 

<table> 
<tr> 
//... some content is inserted here from DB ($result) 
</tr> 
</table> 

回答

3

你只需要使用$.get

$.get('content.php', function(data) { 
    $('#popup_manual').html(data); 
}); 

因此,它將成爲:

$(document).ready(function() { 
    loadPopupManual(); 
}); 

function loadPopupManual() { // to load the PopupManual DIV 
    $('#popup_manual').fadeIn("slow"); 
    $.get('content.php', function(data) { 
     $('#popup_manual').html(data); 
    }); 
} 
+0

它會保存在content.php中定義的所有腳本嗎?或者它只會顯示填充了DB數據的表格? –

+0

它會評估的腳本,是的.. –

+0

好吧,我要去看看 –