私がやろうとしているのは、タグが閉じられる前の* </span>
test123の後にテーブルとその内容を追加することですが、機能していません。このコードの何が問題なのかわかりませんか?*
JQUERYコード
$('span[itemprop="description"]').append($('C1'));
HTMLコード
<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>