0

我想在 head 中添加 css 和 js 文件。但我的模板使用龙门。所以我需要使用龙门对象来添加css和js。但是在我的自定义表单代码中无法访问此对象。我认为我的 requireonce 函数不能包含该文件。

require_once('../../../../templates/rt_graffito/lib/gantry/gantry.php');
$gantry->init();
$gantry->addStyle('media/moo_rainbow/css/mooRainbow.css', 5);
$gantry->addScript('media/moo_rainbow/js/mooRainbow.js');

这是我在计时表中使用的代码。但它不起作用。

4

1 回答 1

1

我敢打赌,您可以使用核心 Joomladocument对象,然后 gantry 会捡起它,请尝试以下操作:

<?php
 // ... some code here
 $document = &JFactory::getDocument();
 $document->addScript('media/moo_rainbow/js/mooRainbow.js');
 $document->addStyleSheet( 'media/moo_rainbow/css/mooRainbow.css');
 // ... other code

和文档参考

http://docs.joomla.org/JDocument/addStyleSheet
http://docs.joomla.org/Adding_JavaScript

于 2013-01-19T12:51:18.597 回答