我已经创建了这样的自定义按钮
setup: function (ed) {
ed.addButton('fancybox_button', {
title: 'Fancybox button',
image: 'img/button.gif',
onclick: function() {
fancybox_button();
}
});
}
这有效,按钮出现在工具栏中。接下来我在 tinyMCE.init 之前有这样的 fancybox_button 函数
function fancybox_button() {
$.fancybox({
padding : 0,
minHeight : 560,
minWidth : 950,
...
});
}
通过单击自定义按钮,我会收到此错误
Uncaught TypeError: Object function ( selector, context ) {
// The jQuery object is actually just the init constructor 'enhanced'
return new jQuery.fn.init( selector, context, rootjQuery );
} has no method 'fancybox'
我该怎么做?