【发布时间】:2017-09-30 10:51:47
【问题描述】:
我使用Summernote 作为所见即所得的编辑器,但我有一个问题。我的大部分文本编辑都在代码视图中进行,问题是如果您在代码视图中提交表单,编辑的文本不会被保存。
出于某种原因,我需要在代码视图和所见即所得视图之间切换以保存已编辑的文本。有人知道如何解决这个问题吗?
我看过这个Not saving content while in code view? #127,但它对我不起作用。
这是我的代码。
$(document).ready(function() {
$('#desc').summernote({
height: 1000, // set editor height
minHeight: null, // set minimum height of editor
maxHeight: null, // set maximum height of editor
focus: true, // set focus to editable area after initializing summernote
codemirror: {
mode: 'text/html',
htmlMode: true,
lineNumbers: true,
theme: 'monokai'
},
callbacks: {
onBlur: function() {
//should probably do something here
},
onInit: function() {
console.log('Summernote is launched');
$(this).summernote('codeview.activate');
}
}
});
});
如果需要这里是html。
<textarea name="desc" id="desc" class="form-control" rows="40"></textarea>
【问题讨论】:
标签: javascript jquery summernote