javascript – 如何隐藏不在HTML标记内的文本?

前端之家收集整理的这篇文章主要介绍了javascript – 如何隐藏不在HTML标记内的文本?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在上面的代码中我想隐藏“美国”字样.我在美国之后隐藏了这张图片,但无法找到隐藏这个“美国”字样的方法.什么可能是隐藏它的代码?

最佳答案
像这样的东西?

.padd10_m {
  font-size: 0px;
}
.padd10_m > * {
  font-size: 14px;
  /* Apply normal font again */
}

Working fiddle

要么

如果你想使用JavaScript(我不明白为什么),这是解决方案:

var pad = document.querySelector('.padd10_m');
Array.prototype.forEach.call(pad.childNodes,function(el) {
  if (el.nodeType === 3) {   // check if it is text node
    pad.removeChild(el);     // remove the text node
  }
});

原文链接:/html/426606.html

猜你在找的HTML相关文章