我需要在加载我的Joomla 2.5组件时加载一个jquery脚本;在我看来,我补充道:
function display($tpl = null)
{
// Display the template
$document = JFactory::getDocument();
$document->addScript("components/com_myname/assets/js/script.js","text/javascript",true);
parent::display($tpl);
}
但是脚本永远不会被执行,因为script.js是在jquery.js之前加载的。 如何在不破解joomla核心或模板文件的情况下建立脚本的加载顺序?
答案 0 :(得分:19)
您需要先将jquery添加到文档中:
$document->addScript('/path/to/jquery/jquery.min.js');
$document->addScript('components/com_myname/assets/js/script.js');
为避免多个扩展加载多个jquery实例,请使用以下代码,大多数开发人员都遵循此代码。
$app = JFactory::getApplication();
if(!$app->jquery){
$document->addScript('/path/to/jquery/jquery.min.js');
$app->jquery = true;
}
如果无法控制jquery的加载方式,可以使用以下方法。
$document->addCustomTag('<script src="'.JURI::root(true).'/components/com_myname/assets/js/script.js" type="text/javascript"></script>');
在加载所有其他脚本后,将加载自定义标记。