Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Quill 编辑器http://quilljs.com/
它有一个作者模块,可以突出显示根据哪个用户进行的编辑。但是如果你想关闭高光,然后再打开呢?如何控制作者身份模块打开和关闭高亮显示?
这没有很好的记录,但是您可以使用一个enableand函数调用。disable
enable
disable
var quill = new Quill('#editor'); var authorship = quill.addModule('authorship'); authorship.disable();
如果方便的话,enable(false)是一样的disable()。
enable(false)
disable()