作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
文本节点方法 replaceWholeText()
已经过时,还有什么其他方法可以做到这一点?
最佳答案
您可以使用 parentNode.normalize()
方法以删除所有空的和相邻的 TextNode(即您将只有一个由 wholeText
组成的 TextNode),然后将合并的 TextNode 的 textContent 设置为替换值:
const para = document.querySelector('p');
para.appendChild(new Text('baz')); // would remain if not normalized
console.log('before normalizing');
console.log('textContent: ', para.firstChild.textContent);
console.log('wholeText: ',para.firstChild.wholeText);
para.normalize();
console.log('after normalizing');
console.log('textContent: ', para.firstChild.textContent);
console.log('wholeText: ',para.firstChild.wholeText);
// now we can set the wholeText to whatever we want.
para.firstChild.textContent = 'Hello world';
<p>
foo bar
</p>
关于javascript - .replaceWholeText() 方法已过时,还有哪些其他方法可以做到这一点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47746136/
文本节点方法 replaceWholeText() 已经过时,还有什么其他方法可以做到这一点? 最佳答案 您可以使用 parentNode.normalize()方法以删除所有空的和相邻的 TextN
我是一名优秀的程序员,十分优秀!