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 スクリプトを適用したいと思います。
私が抱えている問題は、いくつかの jqMath 構文を取得してメイン ページの div セクションにロードする ajax 呼び出しを行うことです。
ただし、構文は現在解析されていません。ajax 呼び出しが返されて適切な div セクションに適用されたときに、jqMath をトリガーできるようにするにはどうすればよいですか?
M.parseMath(myDiv);読み込み後に呼び出しmyDivます。
M.parseMath(myDiv);
myDiv
たとえば、jqMathM.parseMath(document.body);は最初のページの読み込み後に自動的に実行します。
M.parseMath(document.body);
jqMath 以外にグローバル変数 M を使用すると、上記は機能しない可能性があります。回避策はjqMath.parseMath(element);、たとえば呼び出すことですjqMath.parseMath(document.body);
jqMath.parseMath(element);
jqMath.parseMath(document.body);