12345678910111213141516 |
- <link rel="stylesheet" href="/static/pack/kindeditor/themes/default/default.css"/>
- <script charset="utf-8" src="/static/pack/kindeditor/kindeditor-all-min.js"></script>
- <script charset="utf-8" src="/static/pack/kindeditor/lang/zh-CN.js"></script>
- <script>
- var editor;
- KindEditor.ready(function (K) {
- editor = K.create('textarea[name="content"]', {
- // allowFileManager: true,
- uploadJson: '/upload/index/kindeditor',
- themeType: 'simple',
- afterBlur: function () {
- this.sync();
- }
- });
- });
- </script>
|