我需要把这一行放到Joomla index.php
中,我尝试了不同的方法,但它们不起作用。
$(window).load(function(){
$("#header").sticky({ topSpacing: 0 });
});
答案 0 :(得分:0)
可以使用JDocument
类AddScriptDeclaration
方法声明Joomla中的JavaScript代码块。
<?php
$document = JFactory::getDocument();
$document->addScriptDeclaration('
$(window).load(function(){$("#header").sticky({topSpacing:0});});
');
?>