我目前正在使用以下代码:
jQuery(document).ready(function() {
editorftl = CodeMirror.fromTextArea(document.getElementById("codeftl"), {
mode: "text/ftl",
lineNumbers : "true",
extraKeys: {"'<'": function (cm){CodeMirror.showHint(cm, CodeMirror.hint.ftl);}},
});
});
我想打印&#34;&lt;&#34;键盘上的键,并显示自动完成选项。 有可能吗?