'innerText' works in IE, but not in Firefox

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

    What about something like this?

    //$elem is the jQuery object passed along.
    
    var $currentText = $elem.context.firstChild.data.toUpperCase();
    

    ** I needed to make mine uppercase.

提交回复
热议问题