国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > web前端 > jscript > ckeditor删除链接中高级Tab页

ckeditor删除链接中高级Tab页

来源:程序员人生   发布时间:2013-10-04 16:22:40 阅读次数:2375次

CKEDITOR.on( 'dialogDefinition', function( ev )
{
        // Take the dialog name and its definition from the event
        // data.
        var dialogName = ev.data.name;
        var dialogDefinition = ev.data.definition;

        // Check if the definition is from the dialog we're
        // interested on (the "Link" dialog).
        if ( dialogName == 'link' )
        {
            // Remove the "advanced" tab from the "Link" dialog.
            dialogDefinition.removeContents( 'advanced' );
        }
})

作者: Rady Huang
本文地址: ckeditor删除链接中高级Tab页
生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生