如何将 onClick 侦听器添加到 CKEditor 中的 fileButton?
我正在使用图像上传器插件,并且有一个像这样的按钮定义:
{
type : 'fileButton',
id : 'uploadButton',
filebrowser : 'info:txtUrl',
label : editor.lang.image.btnUpload,
'for' : [ 'Upload', 'upload' ],
onClick : function() {alert('hey')}
}
我尝试将要在其他地方调用的函数定义为命名函数,但没有成功。我也无法向其他元素添加 onClick
侦听器,但添加了 buttonDefinition 类 这里明确表示您应该能够向按钮添加一个。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你有没有尝试过:
Have you tried:
这是 javascript 中的 FileButton 类
或者如果您有 json 对象并想要包装成 javascript 类对象,请定义 FileButton 类并使用 jquery:
JsFiddle.net 链接
This is the class of FileButton in javascript
Or if you have json object and want to wrap into javascript class object, define FileButton class and use jquery:
JsFiddle.net link