jquery提取元素里的纯文本不包含span等里的内容
时间:2021-05-31 08:24:30|栏目: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 |
上一篇:BootStrap的table表头固定tbody滚动的实例代码
栏 目:jquery
本文标题:jquery提取元素里的纯文本不包含span等里的内容
本文地址:http://www.codeinn.net/misctech/132319.html