Froala编辑器删除空的span标签

时间:2014-12-17 15:28:03

标签: jquery html html-editor

我正在使用Froala编辑器编辑我网站上的某些内容。一切都很好,除非我使用<span></span>插入图标,它会自动删除跨度。现在,我知道这是保持代码干净的一项功能,但根据文档:https://editor.froala.com/options#allowedEmptyTags span默认情况下应该为空。我不确定如何添加Froala allowEmptyTags参数,但这是我在下面的尝试:

          $('#edit').editable({
            allowedEmptyTags: ["span", "table"],
            inlineMode: false,  
            buttons: ["bold", "italic", "underline", "strikeThrough", "fontSize", "color", "formatBlock", "align", "insertOrderedList", "insertUnorderedList", "outdent", "indent", "selectAll", "createLink", "anchor", "insertImage", "insertVideo", "undo", "redo", "html"], 
            blockTags: ['p'], 
          }

1 个答案:

答案 0 :(得分:0)

由于应用样式的方式,将始终删除空跨度。您可以使用div来避免这种情况。