Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在初始页面加载后应用 jqMath 脚本。
我遇到的问题是我进行了一个 ajax 调用,它检索了一些 jqMath 语法并将其加载到主页的 div 部分。
但是,目前尚未解析语法。当 ajax 调用返回并应用于适当的 div 部分时,如何确保可以触发 jqMath?
M.parseMath(myDiv);加载后调用myDiv。
M.parseMath(myDiv);
myDiv
例如,jqMath 会M.parseMath(document.body);在初始页面加载后自动执行。
M.parseMath(document.body);
如果您将全局变量 M 用于 jqMath 以外的其他内容,则上述操作可能会失败。解决方法是调用jqMath.parseMath(element);例如jqMath.parseMath(document.body);
jqMath.parseMath(element);
jqMath.parseMath(document.body);