加载我的 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 核心或模板文件的情况下建立脚本的加载顺序?