我需要在Ckeditor上添加一些快捷方式,以便在Macintosh上使用
在自定义JavaScript配置中,我添加了此代码,但根本无法使用。
config.keystrokes = [
[ CKEDITOR.CTRL + 49 /*1*/, 'heading-h1' ],
[ CKEDITOR.CTRL + 50 /*2*/, 'heading-h2' ],
[ CKEDITOR.CTRL + 51 /*3*/, 'heading-h3' ],
[ CKEDITOR.CTRL + 52 /*4*/, 'heading-h4' ]
];
答案 0 :(得分:0)
试试这个;无论你在哪里更换ckeditor。我在我的应用程序中做了不同的操作,我无法看到您在何处或如何替换/扩展/自定义编辑器,因此我无法在不看到您的应用程序的情况下向您提供更好的说明:)
CKEDITOR.on('instanceReady', function (ev) {
var editor = ev.editor;
editor.addCommand('heading-h1', {
modes: { wysiwyg: 1, source: 1 },
exec: function (editor) {
alert("NEIGH! I AM A PONY! ASDASDASD");
}
});
});