FastAdmin后台编辑文本时,我用的是免费插件summernote,它可以生成富文本框。
但由此也带来一个问题,想清空时使用$("#c-content").val('')
或$('#c-content').html('')
是不行的。
需要这么写:
require(['summernote'], function() {
$('.editor').summernote('reset')
});
Home of Little Jelly
FastAdmin后台编辑文本时,我用的是免费插件summernote,它可以生成富文本框。
但由此也带来一个问题,想清空时使用$("#c-content").val('')
或$('#c-content').html('')
是不行的。
需要这么写:
require(['summernote'], function() {
$('.editor').summernote('reset')
});