如果我正確理解你的問題,我會做這樣的事情:
創建一個Ajax調用並在服務器端創建該表:
<?php
function call_this_function_from_js_with_ajax() {
//Fetch data from database
$table_html ="<thead><th>{$title from db}</th></thead>';
$table_html .= "<tbody>';
$table_html .= "<tr><td>{$value1 from db}</td></tr>";
$table_html .= "<tr><td>{$value2 from db}</td></tr>";
$table_html .= "<tr><td>{$value3 from db}</td></tr>"; //etc etc
$table_html .= "</tbody>";
return $table_html;
}
?>
的jQuery:
$(".prof-list h3").click(function(){
$(this).next().slideToggle();
//Do ajax call and put the returned data into the the table
//
on success:
`$("table.col-md-6").html(data);`
})
html
<table class="col-md-6">
{your returned data would be seen here}
</table>
在點擊事件$(「。prof-list h3」)中執行ajax-call。點擊(function()並用返回的數據填充某個元素? – bestprogrammerintheworld
@bestprogrammerintheworld我會得到那個單擊的元素的屬性,這將是教授的ID。然後我想用這個ID從數據庫獲取數據並填寫表格......只需要一些指導就可以了。 – PlayHardGoPro
無論誰給了downvote,至少評論這裏的原因......謝謝 – PlayHardGoPro