CKeditor不会显示动态生成的模态

时间:2016-03-25 07:40:06

标签: jquery html ckeditor bootstrap-modal

我使用数据表addcolumn生成动态按钮,然后每个按钮都会显示一个模式,我想在其中放置一个CKeditor实例。

的.js

CKEDITOR.replace( 'editor' );

这段代码在html页面上运行正常,但当我把它放在modal中时,它只显示一个普通的textarea

<textarea name="editor"></textarea>

我在这里想念什么?

1 个答案:

答案 0 :(得分:0)

$('#myModal').on('shown.bs.modal', function (e) {
  CKEDITOR.replace( 'editor' );
});

你必须在DOM中添加元素后触发该函数,将#myModal替换为模态的选择器,它应该可以工作 - 这应该适用于bootstrap模式