如何在 IE8 中更改 TextNode 的 textContent?

How to change textContent of TextNode in IE8?

textNode.innerHTML = 'abc'textNode.textContent = 'abc' 似乎在 IE8 中不起作用。根据 MSDNtextContent 仅适用于 IE9+。

那么如何在 IE8 中更改 TextNode 的文本?

明确地说,我说的是 HTML 节点 nodeType === 3,我不想也不关心更改 HTML 的文本元素.

textNode.nodeValue = 'abc' 应该没问题。