Jquery如何獲取某個元素前(後)的文本內容?

<span>
text here...
<a id="target_element">百萬創想</a>
</span>node

如何得到a標籤前面的"text here"處的文本內容呢?this

 

 

$("#target_element").parent().contents().filter(function(){
return this.nodeType == 3;
}).text();spa

相關文章
相關標籤/搜索