我有这段代码,它抓取我的表(tr)的 tfoot 内的 html 并将其存储,以便我可以将其用作模板,然后将其删除。
$teamTfoot = $teamsTable.find('tfoot');
tpl = $teamTfoot.html();
$teamTfoot.html('');
我以为我可以做一个这样的班轮,但显然这行不通。
tpl = $teamsTable.find('tfoot').html().html('');
我所做的提取html的最佳/最简单方法是什么?