javascript – 如何禁用Aloha Editor工具栏?

前端之家收集整理的这篇文章主要介绍了javascript – 如何禁用Aloha Editor工具栏?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法以与侧边栏相同的方式禁用Aloha的ExtJS工具栏?
Aloha.settings =
    modules: ['aloha','aloha/jquery']
    editables: '.editable'
    jQuery: $
    sidebar:
        disabled: true
    toolbar:
        disabled: true # does not work

解决方法

用类标记元素
<div class="editable notoolbar"></div>

使用事件:

Aloha.ready(function () {
    var $= Aloha.jQuery;
    Aloha.bind('aloha-editable-activated',function () {
        if ($(Aloha.activeEditable.obj[0]).hasClass("notoolbar")) {
            $(".aloha-toolbar").hide();
        }
    });
});
原文链接:https://www.f2er.com/js/240852.html

猜你在找的JavaScript相关文章