MathQuill.js
Posted 阿力瓦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MathQuill.js相关的知识,希望对你有一定的参考价值。
MathQuill.js通过html、css、javascript实现数学公式
<p>Type math here: <span id="math-field"></span></p> <p>LaTeX of what you typed: <span id="latex"></span></p> <script> var mathFieldSpan = document.getElementById(‘math-field‘); var latexSpan = document.getElementById(‘latex‘); var MQ = MathQuill.getInterface(2); // for backcompat var mathField = MQ.MathField(mathFieldSpan, { spaceBehavesLikeTab: true, // configurable handlers: { edit: function() { // useful event handlers latexSpan.textContent = mathField.latex(); // simple API } } }); </script>
官网:http://mathquill.com/
以上是关于MathQuill.js的主要内容,如果未能解决你的问题,请参考以下文章