我想从我的QUILL编辑器中删除html代码。保存鹅毛笔的内容时,是否有删除HTML代码的选项或方法?
这是我的代码:
function initialize_quill(){
var limit = 250;
var options = {
theme: 'snow'
};
var collectionnotequill = new Quill('#collection-note-quill', options);
collectionnotequill.on('text-change', function () {
if (collectionnotequill.getLength() > limit) {
collectionnotequill.deleteText(limit, collectionnotequill.getLength());
}
});
}