将内联脚本添加到joomla 3 index.php

时间:2017-07-24 23:07:18

标签: php joomla

我需要把这一行放到Joomla index.php中,我尝试了不同的方法,但它们不起作用。

$(window).load(function(){
     $("#header").sticky({ topSpacing: 0 });
});

1 个答案:

答案 0 :(得分:0)

可以使用JDocumentAddScriptDeclaration方法声明Joomla中的JavaScript代码块。

<?php
$document = JFactory::getDocument();
$document->addScriptDeclaration('
   $(window).load(function(){$("#header").sticky({topSpacing:0});}); 
');
?>