For newly added elements, events cannot be monitored. There are following solutions
1: Monitor the parent element (event delegation mechanism)
$(".table-body").on("change","input ",function(){
//todo someting;
})
The above function is to monitor the change event of the input element newly added to the class table-body...