文档标签: kindeditor
Bootstrap的模态框中使用kindeditor无法编辑的问题,解决方法:能正常使用的把弹出窗的 tabindex="-1" 属性去掉就可以了,或者改成999999999这个数字要大,不然不起作用。问题地址:https://www.oschina.net/question/226830_143869, 答案在回复中。相关问答:kindeditor在dialog弹出框中无法获得焦点解决Bootstrap模态窗口Modal中使用Kindeditor或UEditorbootstrap中使用modal加载kindeditor时弹出层文本框不能输入的问题...
首先看一下官方提出的方法:
移除编辑器后重新创建就可以,这是修改页面编辑器,
http://www.kindsoft.net/ke4/examples/multi-language.html
查看页面源码:
[html]
<script>
var editor;
KindEditor.ready(function(K) {
K('select[name=lang]').change(function() {
if (editor) {
editor.remove();
editor = null;
}
editor = K.create('textarea[name="content"]', {
langType : this.value
});
});
K('select[name=lang]').change();
});
</sc...
在有些后台页面可能在一个页面要添加多个可视化编辑器,目前用得多就KINDEDITOR,如果在一个页面放置多个编辑器,多个编辑器会不会有冲突!带着这些疑问在kindeditor上查找相关的问题,最后在上面找到了一个关于解决一个页面放置多个编辑器的问题!
文章页面:主题: 一个页面放置2个kindeditor 编辑器的问题[已解决]
[html]
<script charset="utf-8" src="../editor/kindeditor.js"></script>
<script>
KE.show({
id : 'product_info_Detail',
imageUploadJson : '../../asp/upload_json.asp',
fileManagerJson : '../../asp/file_manager_...
3 条记录 1/1 页