'innerText' works in IE, but not in Firefox

前端 未结 15 1412
执念已碎
执念已碎 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:34

    jQuery provides a .text() method that can be used in any browser. For example:

    $('#myElement').text("Foo");
    

提交回复
热议问题