jquery提取元素里的纯文本不包含span等里的内容
作者:
如何实现提取元素里的纯文本,不包含span等里的内容,这就是本文要为大家介绍的重点,你将学会使用jquery来实现
复制代码 代码如下:
var text = '';
$('div').contents().each(function(){
if(this.nodeType === 3){
text += this.wholeText;
}
});
nodeType
元素element | 1 |
属性attr | 2 |
文本text | 3 |
注释comments | 8 |
文档document | 9 |