Итак, я использовал MathQuill перед переходом на MathJax, я написал следующий JS, чтобы принимать значения из списка DropDown и отображать (отображать) их в формате MathQuill:
$(document).on("change", "#tl2AreaSelect" , function(event){
event.preventDefault();
var search_response = pullValuesForSearch();
getSearchedProblems_tl2(search_response,function(response){
for(var i in response){
var problem_ = response[i].problem;
var problem_statement = JSON.parse(problem_).statementProblem.formated;
var _elem = addProblemStatementsDOM(problem_statement, i);
$(_elem).appendTo("displayBox");
$("#problem_"+ i).data("problem_encoded",btoa(unescape(encodeURIComponent(problem_))));
writeLatexToStaticMathField(initStaticMathField("#problem_statement_"+ i), modifyTextToLatexExpression(problem_statement));
}
});
});
The function initStaticMathField() has the following code in it:
function initStaticMathField(element_id) {
return MQ.StaticMath($(element_id)[0]);
}
Мой вопросyou is: Как мне использовать MathJax для визуализации элементов в этом случае, а не использовать MathQuill?Я получаю строку JSON из бэкэнда (переменная 'problem _')
Извините, если что-то вас смутило, это мой первый раз здесь, ура!