When I edit the code in a TextArea using CodeMirror how to reflect this into another textarea with js or jQuery

前端 未结 6 1083
暗喜
暗喜 2021-02-03 23:59

The App: I have a textarea element in my page. It is transformed using CodeMirror, because I need to indent and highlight html code withing it. Pic is in the li

6条回答
  •  余生分开走
    2021-02-04 00:35

    This works work CodeMirror 5.22.0:

    CodeMirror.fromTextArea(document.getElementById('grammar'), {
        lineNumbers: true,
        mode: 'pegjs',
    }).on('change', editor => {
        console.log(editor.getValue());
    });
    

提交回复
热议问题