成长脚印-专注于互联网发展
【解决】Jquery如何获取某个元素前(后)的文本内容?
post by:天之骄子 2012-9-6 16:58
<span>
    text here...
    <a id="target_element">百万创想</a>
</span>

如何获得a标签前面的"text here"处的文本内容呢?

【解决】:

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

评论:
发表评论:
昵称

邮件地址 (选填)

个人主页 (选填)

内容