作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以,我想做的是获取我的公式所见即所得的输入元素
<span id="editable-math" class="mathquill-editable"></span>
和 LaTeX 输入元素
<textarea id="mathjaxSrc" rows="6" cols="60"></textarea>
同步工作。我的代码是
var MQ = MathQuill.getInterface(2);
var mathField = MQ.MathField(latexMath, {
spaceBehavesLikeTab: true,
handlers: {
edit: function() {
latexSource.value = mathField.latex();
jQuery(latexSource).change();
}
}
});
jQuery(latexSource).change(function(){
mathField.latex(latexSource.value);
});
这主要有效:WYSIWYGish 编辑器更新 LaTeX 输入字段,但 LaTeX 输入字段仅在鼠标单击其他位置后更新 WYSIWYGish 编辑器(可能模糊)。
我的问题是:如何使所见即所得的编辑器值更新而不需要点击其他地方?我猜想向 .change
处理程序添加什么?
最佳答案
好吧,没关系,这不是关于 MathQuill 的问题,而是关于使用什么事件处理程序的问题。此行为是documented behaviour的变化
。为了实现我所需要的,我必须使用 keydown
或 keyup
或 keypress
方法(使用或不使用 jQuery)。
关于javascript - 如何在 MathQuill 0.10 中同步文本字段和公式字段内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35877834/
我是一名优秀的程序员,十分优秀!