如何使用html標籤獲取文本,但只能從主DIV獲取文本?不形成其他DIVS。通過jquery獲取來自主DIV的html標籤的文本?
這裏是例子,但有一些問題,becouse文字無需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());
'$的.text()'返回沒有標籤的內容的字符串。 – Broxzier
@Broxzier - 他想要那些標籤。 – tymeJV
你能解釋一下你期望從這個例子中返回嗎? – Broxzier