Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用simplemde-markdown-editor库,我希望能够以编程方式在光标位置插入文本。
var simplemde = new SimpleMDE();
创建实例后,simpleMDE您可以执行以下操作:
simpleMDE
var pos = simplemde.codemirror.getCursor(); simplemde.codemirror.setSelection(pos, pos); simplemde.codemirror.replaceSelection("YOUR_TEXT");