您可以从您的 Joomla 站点中删除不需要的脚本。你要么这样尝试
<?php
//get the all the script declarations
$document = JFactory::getDocument();
$headData = $document->getHeadData();
$scripts = $headData['scripts'];
//if you want to remove all the script
unset($scripts);
//if you want to remove specific file then try like this
unset($scripts['/media/system/js/mootools-core.js']);
?>
或者像这样尝试
//if you want to remove all the script
<?php unset($this->_scripts); ?>
//if you want to remove specific file then try like this
<?php unset($this->_scripts['/media/system/js/mootools-core.js']); ?>
您可以应用之前的任何方法<jdoc:include type="head" />。它将删除所有脚本。
希望这会帮助你。