$.ajax({
type:"POST",
url:"abc.php",
data:dataString,
success:function(response){
//alert(response);
// Here I want to write code to refresh table body
}
});
Run Code Online (Sandbox Code Playgroud)
通过在成功函数中替换表 ID 来试试这个
success:function(response){
$("#table_id").load(window.location + " #table_id");
}
Space in important.
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
10404 次 |
| 最近记录: |