如何使用内联<span>类设置所选文本?

时间:2017-05-20 20:21:42

标签: quill

我想用文字包装。 我试图通过扩展Inline类来实现。 即。

class MBlot extends Inline { }
MBlot.blotName = 'ql-important';
MBlot.tagName = 'span';
MBlot.className = 'important'
Quill.register(MBlot)
Quill.formatText(0, 5, 'ql-important', true);

然而,这没有效果。 顺便说一句:如果我将tagName更改为“someOtherTag”,它似乎可以正常工作

我该怎么办呢?

0 个答案:

没有答案