Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在你的桌子上添加一个“my_table”id并使用它:
$(function(){ $("#my_table").on('click','.close',function(event){ event.preventDefault(); $(this).closest('tr').remove(); }); });