废话不多说,就是干!
问题:
var editor1;
KindEditor.ready(function (K) {
editor1 = K.create('textarea[name="news_content"]', {
cssPath: '${ctxstatic }/js/plugins/kindeditor/plugins/code/prettify.css',
<%--uploadJson : '${ctx }/hossurgery/editorImg',--%>
uploadJson:七牛云上传地址,
allowFileManager: true,
afterCreate: function () {
var self = this;
K.ctrl(document, 13, function () {
self.sync();
document.forms['example'].submit();
});
K.ctrl(self.edit.doc, 13, function () {
self.sync();
document.forms['example'].submit();
});
}
});
prettyPrint();