如何在joomla模板文件中异步加载js文件

时间:2014-11-18 06:52:45

标签: php asynchronous joomla cache-control pagespeed

我正在使用joomla。在它的模板中,js被称为跟随方式 -

 $doc->addScript($this->baseurl . '/templates/' . $this->template . '/javascript/cscript.js', 'text/javascript');

我只想为其添加标记async。我该怎么做.. ??

1 个答案:

答案 0 :(得分:1)

您需要使用布尔true

传递第4个参数
$doc->addScript($this->baseurl . '/templates/' . $this->template . '/javascript/cscript.js', 'text/javascript', false, true);