Joomla 2.5 Uncaught ReferenceError:Joomla未定义
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Joomla 2.5 Uncaught ReferenceError:Joomla未定义相关的知识,希望对你有一定的参考价值。
我刚刚将一个joomla应用程序从1.7版本升级到2.5 ...在应用程序最初工作之后我安装了k2,卸载后我现在看到一个Uncaught ReferenceError:我的控制台中没有定义Joomla。
它会阻止文章编辑器加载。
Uncaught ReferenceError: Joomla is not defined
它发生在我认为的这段代码中......
submitbutton = function(task) {
if (task == 'article.cancel' || document.formvalidator.isValid(document.id('item-form'))) {
if (tinyMCE.get("jform_articletext").isHidden()) {
tinyMCE.get("jform_articletext").show()};
tinyMCE.get("jform_articletext").save();
Joomla.submitform(task, document.getElementById('item-form'));
} else {
alert('Invalid form');
}
}
}
我甚至都懒得去灌木丛......我很难过。
答案
检查你的插件加载顺序,并确保在k2之前加载所有需要的javascript,这可能会有所帮助...
另一答案
我得到了完全相同的东西,原来这是由JCE编辑。我将它更新到最新版本,这为我修复了这个错误
以上是关于Joomla 2.5 Uncaught ReferenceError:Joomla未定义的主要内容,如果未能解决你的问题,请参考以下文章