回复内容:
KindEditor 默认采用白名单过滤方式,可用 htmlTags
参数定义要保留的标签和属性。当然也可以用 filterMode
参数关闭过滤模式,保留所有标签。
KindEditor.ready(function(K) {
K.create('textarea[name="content"]', {
filterMode : false
});
});
登录后复制
然而,这并不能取代后端的过滤,因为前段的处理可以被绕过。