我有一个HTML:
<strong>1)</strong>TEXT THAT I ONLY NEED<p>some par</p><ul>..</ul>
我只需要“只有我需要的文本”,那就是他的HTML中没有任何标签,我该如何用jQuery来获取它?
谢谢。
解决方法
最好的方法是
.clone()
你的对象,
.remove()
全部
.children()
,然后回到对象使用
.end()
,最后得到
.text()
。
该方法描述于this blog post。
$("strong") .clone() //clone the element .children() //select all the children .remove() //remove all the children .end() //again go back to selected element .text(); //get the text of element