Posted in Javascript onSeptember 30, 2013
var text = ''; $('div').contents().each(function(){ if(this.nodeType === 3){ text += this.wholeText; } });
nodeType
元素element | 1 |
属性attr | 2 |
文本text | 3 |
注释comments | 8 |
文档document | 9 |
jquery提取元素里的纯文本不包含span等里的内容
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@