前端之家收集整理的这篇文章主要介绍了
jQuery选择文本节点并删除其内容,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
据我了解,我认为这就是你要找的东西:
$('.example').each(function(){
console.log($(this).contents());
$(this).contents().filter(function(){
if( this.nodeType === 1 && this.childElementCount == 0 && this.textContent == ''){
this.textContent = 'new value';
}
});
});@H_403_8@
你可以查看fiddle
原文链接:https://www.f2er.com/jquery/177230.html