动态生成内容时 jqMath 不呈现公式

jqMath does not render a formula when content is generated dynamically

我正在查看使用 JavaScript 动态生成的 HTML。这是如何完成的

var el = $('body').find('div#my-div.main');
el.html('');
el.append($("<p>If $ax^2+bx+c=0$ with $a≠0$, then:$$x={-b±√{b^2-4ac}}/{2a}$$</p>"));

但是页面上没有呈现任何公式。我看到了 p 标签中的确切文本。我确实检查了 jqMath 脚本和 jqMath css 的路径,它们都是正确的。

有谁知道为什么会这样以及如何解决?

像这样附加公式后调用 parseMath 函数 -

        var el = $('body').find('div#my-div.main');
        el.html('');
        el.append("<p>If $ax^2+bx+c=0$ with $a≠0$, then:$$x={-b±√{b^2-4ac}}/{2a}$$</p>");
        jqMath.parseMath(document.body);