From jquery how to insert o
some other data |
after the tr id=user
相关标签:
-
2020-12-21 22:55
Like this...Use the jQuery after() method
$("#user").after("<tr><td>some other data</td></tr>");
-
2020-12-21 23:09
$('table').append('<tr><td>some other data</td></tr>')
.append
will place the html at right before the end tag of the selector.