You can't disembody HTML tables.
If you're looking to get rid of superfluous <tbody></tbody>
tags in an HTML string, do a string replacement:
var html = '<table><tbody>...</tbody></table>'.replace(/</?tbody>/g, '');
$(html).appendTo('body');
But browsers are still going to put the table rows in a table body when rendering the HTML anyway.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…