如何覆盖NGX-鹅毛笔编辑链接,使其在同一标签中打开? 默认情况下,在新标签页中打开(how t

2019-10-29 06:17发布

我使用羽毛笔富文本编辑器具有角4.每当我添加它就会与_target =“空白”,这使得它在新标签中打开添加的链接。 我想在同一个选项卡中打开它。 提前致谢。

Answer 1:

target属性的设置链接印迹 。 你可以扩展链接印迹删除该属性:

var Link = Quill.import('formats/link');
class MyLink extends Link {
  static create(value) {
    const node = super.create(value);
    node.removeAttribute('target');
    return node;
  }
}
Quill.register(MyLink, true);

var quill = new Quill('#editor-container', {
  modules: {
    toolbar: [
      [{ header: [1, 2, false] }],
      ['bold', 'italic', 'underline'],
      ['link']
    ]
  },
  placeholder: 'Compose an epic...',
  theme: 'snow'  // or 'bubble'
});


文章来源: how to override ngx-quill editor link and make it open in the same tab? By default it opens in new tab