javascript – 切换CKEditor插件按钮的状态

前端之家收集整理的这篇文章主要介绍了javascript – 切换CKEditor插件按钮的状态前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
根据选择切换ckeditor插件菜单按钮状态的正确方法是什么?

例如,在链接/取消链接插件中,我只想在光标位于链接中时启用取消链接.

editor.addCommand("unlink",{
    exec: function (editor) {
         //do something here
    },refresh: function (editor,path) {
       // never seems to get fired. Is this even the right hook?
    }
});

editor.ui.addButton("Unlink",{
    label: "Unlink",command: "unlink"
});

谢谢您的帮助!

解决方法

有一个 CKEDITOR.commandDefinition#contextSensitive属性可以控制特定上下文中的命令状态.

例如,Unlink按钮的actual implementation看起来像:

CKEDITOR.unlinkCommand.prototype = {
    exec: function( editor ) {
        ...
    },refresh: function( editor,path ) {     
        var element = path.lastElement && path.lastElement.getAscendant( 'a',true );

        if ( element && element.getName() == 'a' && element.getAttribute( 'href' ) && element.getChildCount() )
            this.setState( CKEDITOR.TRISTATE_OFF );
        else
            this.setState( CKEDITOR.TRISTATE_DISABLED );
    },contextSensitive: 1,...
};
原文链接:https://www.f2er.com/js/156927.html

猜你在找的JavaScript相关文章