有没有一种简单的方法可以从这个div获取文本而不需要获取任何子元素?
<div id="someselector">
<strong>Title Text Unwanted</strong> This is the text I need
</div>
我知道我可能会对强者做一个子串。我只是想知道是否有一个函数可以在jQuery中自动为我做 像:
$('#someselector').html().not('strong').text()
答案 0 :(得分:4)
它基本归结为:
$("#someselector").clone().children().remove().end().text();
首先,克隆元素,获取子元素,删除它们,然后获取克隆文本。