我正在尝试使用MathJax使用textarea字段在键入时将文本转换为数学。但是,当我将键入的文本发送到数据库以通过php文件将文本检索回原始文件时,我无法让MathJax将文本转换为类似LaTeX的符号。
这是主要部分(使用jQuery):
$(document).ready(function(){
$('textarea').keydown(function(){
dynamic(); \\ A function described in MathJax documentation to load dynamically
var text = $('textarea').val();
$.post('process.php',{ input: text } );
$("#unload").load('fetch.php');
});
});
其中dynamic()定义为(取自Loading MathJax Dynamically):
function dynamic(){var script = document.createElement("script");
script.type = "text/javascript";
script.src = "http://miql.zxq.net/MathJax/MathJax.js";
var config = 'MathJax.Hub.Config({ config: "MathJax.js" }); ' +
'MathJax.Hub.Startup.onload();';
if (window.opera) {script.innerHTML = config}
else {script.text = config}
document.getElementsByTagName("head")[0].appendChild(script);
};
此外,我有MathJax的常规脚本,该脚本可以正常运行,但使用onload事件。
我认为我错了动态加载MathJax的指令。正确的方法是什么?任何帮助将不胜感激。
最佳答案
听起来您想在页面上修改数学。看到
http://www.mathjax.org/resources/docs/?typeset.html
另请参阅演示页面,网址为
http://mathjax.org/mathjax/test/sample-dynamic.html
关于php - 如何动态加载MathJax?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3816711/