如何在上传的图像中添加课程?

时间:2015-06-27 11:41:25

标签: ruby-on-rails redactor redactor.js

我通过https://github.com/SammyLin/redactor-rails gem使用redactorjs编辑器。如何将class="img-responsive"添加到使用此编辑器上传的所有图像中?

1 个答案:

答案 0 :(得分:2)

您可以使用redactor的回调修改上传的图像DOM。

以下答案取自here。有关imageUploadCallback的更多信息,请here

$('#redactor').redactor({
    imageUploadCallback: function(image, json)
    {
        // image = this is DOM element of image, add the 'img
        $(image).addClass("img-responsive");    
    } 
});