3

我正在使用“froala”编辑器来更改内联文本,这是链接

除了删除 div/p/span 等属性外,一切都运行良好。这是我的功能

 $('div#eg-custom-toolbar').editable({
      inlineMode: false,
        buttons: ['undo', 'redo' , 'sep', 'bold', 'italic', 'underline']
    })
  });

前:

  <div contenteditable="true" ng-style="{'color' : styleArr[6]['scopval']}" ng-bind-html="banner_text3" ng-model="banner_text3" ng-mouseleave="hoverOut('banner_text3')" ng-mouseover="hoverIn('banner_text3')" class="banner_text3 ng-pristine ng-untouched ng-valid ng-binding" style="color: rgb(255, 255, 255);">HE #1 CONVERSION EVENT FOR BUSINESS GROWTH</div>

后:

 <div contenteditable="true" class="banner_text3 ng-pristine ng-untouched ng-valid ng-binding" style="color: rgb(255, 255, 255);">HE #1 CONVERSION EVENT FOR BUSINESS GROWTH</div>

有什么建议么?

4

2 回答 2

2

您可以使用htmlAllowedAttrs选项指定 angularJS 属性。

$('.selector').froalaEditor({
  htmlAllowedAttrs: [
                     'title', 'href', 'alt', 'src', 'style', 
                     'ng-style', 'ng-style', 'ng-bind-html', 'ng-mouseleave', 'ng-mouseover'
                    ]
});
于 2016-04-27T14:11:56.353 回答
0

我通过将我的电子邮件正文模板中使用的 ng 属性列表添加到 Froala 编辑器中的允许属性列表来修复它。

$.FroalaEditor.DEFAULTS.htmlAllowedAttrs = $.merge($.FroalaEditor.DEFAULTS.htmlAllowedAttrs, ["ng-if", "ng-repeat", "ng-show"]);

请注意,您不必再次复制和粘贴整个列表,您可以使用合并功能来做同样的事情。

于 2016-10-24T15:02:41.040 回答