Possible Duplicate:
Getting the contents of an element WITHOUT its children




如何在不使用正则表达式的情况下使用jquery / javascript从以下HTML中获取foobar

<div id="somediv">
foobar
<span></span>
</div>

最佳答案

只需使用.text()

$("#somediv").text();


或者,如果span具有要忽略的内容,请使用:

$("#somediv").contents().first().text();

10-02 15:49