我有这个 HTML:
<tr>
<td class="featureCell" id="featureCell_Announced">
<div>Announced</div>
</td>
</tr>
我有这个 jQuery:
$('.featureCell').each(function () {
console.log($(this).html());
})
我期望的输出是:
<div>Announced</div>
但是,我得到的输出是:
Announced
为什么父 div 被剥离?