2

我正在尝试使用 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 的说明。正确的方法是什么?任何帮助将不胜感激。

4

1 回答 1

4

听起来您想修改页面上的数学。见 http://www.mathjax.org/resources/docs/?typeset.html

另请参阅http://mathjax.org/mathjax/test/sample-dynamic.html上的演示页面

于 2010-09-29T11:46:32.337 回答