问题一:KindEditor放在隐藏的元素里面,当用jq控制其显示时KindEditor编辑器显示不出来。
解决方法:在textarea 加个宽 就OK了<textarea id="Contents1" name="Contents1" rows="5" cols="30" style="width:500px"></textarea>
相关链接1:http://kindeditor.net/ke4/examples/dynamic-load.html
相关链接2:http://kindeditor.net/view.php?bbsid=5&postid=6732
问题二:想获取KindEditor编辑器的内容(也就是textarea的内容)
解决方法:
// 取得HTML内容
html = editor.html();
// 同步数据后可以直接取得textarea的value
editor.sync(); html = document.getElementById(‘editor_id‘).value; // 原生API html = K(‘#editor_id‘).val(); // KindEditor Node API html = $(‘#editor_id‘).val(); // jQuery // 设置HTML内容 editor.html(‘HTML内容‘);
KindEditor问题汇总【不定时更新】,布布扣,bubuko.com
原文地址:http://www.cnblogs.com/geeek/p/3770000.html