我正在使用Codemirror的textarea插件,但我無法檢索textarea的值。如何獲取Codemirror textarea的值
代碼:
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
lineNumbers: true,
matchBrackets: true,
mode: "text/x-csrc"
});
function showCode()
{
var text = editor.mirror.getCode();
alert(text);
}
它顯示錯誤:
editor.getCode() is not a function.
'console.dir(editor.morror)'和'console.dir(editor)'在chrome中顯示的是什麼? – sissonb 2012-04-23 17:56:49