热门IT资讯网

解决启用 codemirror后,jquery获取不到textarea 的值

发表于:2024-11-24 作者:热门IT资讯网编辑
编辑最后更新 2024年11月24日,例子 window.editor_two = CodeMirror.fromTextArea(document.getElementById("config"), {

例子

 
 window.editor_two = CodeMirror.fromTextArea(document.getElementById("config"), {                            lineNumbers: true,                            matchBrackets: true,                            styleActiveLine: true                        }); var d = {'config': editor_two.getValue() };

0