CKEditor如何添加selectPage监听器
我想将 selectPage 事件的监听器添加到我的 CKEditor 插件中,但到目前为止我无法让它工作。该插件工作正常,但我的监听器无法工作。下面的警报永远不会被调用。
代码:
var dialog = function(editor) {
editor.on('selectPage', function(e) {
alert("Page changed");
});
// rest of the plugin code
}
我做错了什么吗?
I want to add a listener of selectPage event to my CKEditor plugin, but so far I'm unable to get it to work. The plugin works fine but my listener is not working. The alert below never gets called.
The code:
var dialog = function(editor) {
editor.on('selectPage', function(e) {
alert("Page changed");
});
// rest of the plugin code
}
Is there something I'm doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
结果您必须将其添加到对话框定义中,而不是添加到对话框对象或编辑器对象上。
Turns out you'll have to add it in the dialog definition, not on the dialog object or the editor object.