0

到目前为止,我一直在我的应用程序中使用 trix 编辑器作为我的所见即所得。现在我已经为内联编辑添加了 best_in_place gem,我想知道是否有一种方法可以实现 trix 编辑器或任何其他所见即所得的编辑器,或者我是否必须更改最佳就地 gem 以获得一些替代方案,因为我需要 WYSIWYG .

将所见即所得编辑器集成到最佳文本区域

这应该是类似的东西,但我无法弄清楚。

$(document).on('best_in_place:activate', function(el) { 
     $(element).trix-editor(); 
});

似乎不起作用。

谢谢!

4

1 回答 1

0

你应该能够做类似的事情

$(document).on('best_in_place:activate', function(el) { 
    // code to initialize the editor on
    // $(element).editor(); ? 
});
于 2018-07-30T03:38:49.937 回答