0
我如何需要更改loadPopupManual()
以填充DIV #popup_manual
與content.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>
它會保存在content.php中定義的所有腳本嗎?或者它只會顯示填充了DB數據的表格? –
它會評估的腳本,是的.. –
好吧,我要去看看 –