nhấp chuột của bạn hanlder để xóa hàng sẽ như thế này, bạn cần chỉ định lại trình xử lý sự kiện cho các hàng mới được thêm vào,
function delete_row(){
let li = $(this);
let id = li.attr("id");
$.post("list.php", {id: id}, function(data){
$("#todo-list").html(data);
//assigne the event handle again
$("#todo").on("click", "li",delete_row)
});
}
$(function() {
$.get("list.php", function(data){
$("#todo-list").html(data);
$("#todo").on("click", "li",delete_row)
});
});