我想利用 AJAX 来读取数据库(php)更新网页
这是我找到的范例 http://behstant.com/blog/?p=662
这是我js档里 ajax 的部份
function makeAjaxRequest(){
$.ajax({
url: 'search.php',
type: 'get',
data: {name:('input.detail').val()},
success: function(response){
$('table#resultTable tbody').html(response);
}
});
在php里,我试只 echo "<tr><td colspan='4'>There were not records</td></tr>"
只有在按下button后才会执行它
但它无法更新 tbody , 检查过 button click function 没问题
想请教各位不知哪里出错了 , 还有更好的方法来读取数据库更新网页(同一个页面)吗 ?