我想要做的是在标签关闭之前的 * </span>
test123之后附加表格及其内容,但它不起作用,不确定这段代码有什么问题?*
查询代码
$('span[itemprop="description"]').append($('C1'));
代码
<span itemprop='description'>test123</span>
this is outside of span tag<br>
<table width="200" border="1" class="C1">
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</table>