操作系统: 2003
浏览器版本: IE6 、火狐
KindEditor版本: 4.0.6
代码如下
KindEditor.ready(function(K)
{
var editor = K.editor(
{
allowFileManager : true,
uploadJson : 'FlvUpLoad_Json.php',
fileManagerJson : 'FlvFile_Manager_Json.php'
});
K('#insertfile').click(function()
{
editor.loadPlugin('flash', function()
{
editor.plugin.flash({
fileUrl : K('#url').val(),
clickFn : function(url, title)
{
K('#url').val(url);
editor.hideDialog();
}
});
});
});
});
BUG再现步骤:
火狐的Firebug报如下错误
editor.plugin.flash is not a function
期望结果:
如何解决