一个页面多个 kindeditor ,只有两个起作用如何解决?
在同一个页面中,多个 kindeditor 无法获取 textarea 值,怎么解决?
解决方案:
只要回调一下就可以。如下示例所示:
使用 afterBlur 回调文章来源:https://www.toymoban.com/diary/share/75.html
var editor1,editor2,editor3,editor4; KindEditor.ready(function(K) { editor1 = K.create('#editor_id1'); editor2 = K.create('#editor_id2'); // 第三个开始 不起作用 editor3 = K.create('#editor_id3',{ afterBlur:function(){this.sync();} }); editor4 = K.create('#editor_id4',{ afterBlur:function(){this.sync();} }); });
文章来源地址https://www.toymoban.com/diary/share/75.html
到此这篇关于在同一个页面中多个kindeditor,只有两个起作用,怎么解决?的文章就介绍到这了,更多相关内容可以在右上角搜索或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!