如何获取带有 html 标签的文本,但只能从主 DIV 获取?不形成其他 DIVS。
这是示例,但存在一些问题,因为文本没有 html 标签 < br />
HTML
<div id='parent'>
this text is <br />for parent
<div id='child-parent'>
this text if for child-parent
<div id='child'>
and this text is for child.
</div>
</div>
</div>
jQuery
alert($('#parent').clone().children().remove().end().html());