标签: ruby-on-rails redactor redactor.js
我通过https://github.com/SammyLin/redactor-rails gem使用redactorjs编辑器。如何将class="img-responsive"添加到使用此编辑器上传的所有图像中?
class="img-responsive"
答案 0 :(得分:2)
您可以使用redactor的回调修改上传的图像DOM。
以下答案取自here。有关imageUploadCallback的更多信息,请here。
imageUploadCallback
$('#redactor').redactor({ imageUploadCallback: function(image, json) { // image = this is DOM element of image, add the 'img $(image).addClass("img-responsive"); } });