我在joomla中有一个使用组件视图文件的模块。
模块代码是:
//Html
<?php
JHtml::_('jquery.framework');
$js = " // jquery custom function and events";
$document->addScriptDeclaration($js);
?>
我以这种方式调用模块:
<?php
jimport('joomla.application.module.helper');
$module = JModuleHelper::getModule('module_name');
echo JModuleHelper::renderModule($module);
?>
我的问题是当我在视图中渲染模块时,那个时候html显示并且工作正常但是jquery没有加载(这意味着jquery没有在控制台中显示)
由于