'innerText' works in IE, but not in Firefox

前端 未结 15 1485
执念已碎
执念已碎 2020-11-21 05:01

I have some JavaScript code that works in IE containing the following:

myElement.innerText = \"foo\";

However, it seems that the \'innerTex

15条回答
  •  春和景丽
    2020-11-21 05:49

    Just reposting from comments under the original post. innerHTML works in all browsers. Thanks stefita.

    myElement.innerHTML = "foo";

提交回复
热议问题