我们使用的蛋糕
$这 - > HTML->脚本( 'jsfilenamewithdotjs');
将外部js文件添加到视图中 我们怎么用锂来做到这一点
答案 0 :(得分:5)
echo $this->html->script('jquery.js');
会返回<script />
标记。如果文件名以"/"
为前缀,则路径将相对于应用程序的基本路径。否则,路径将相对于您的JavaScript路径,通常为webroot/js
。
对于外部脚本$this->html->script('http://foo.com/bar.js');
文档:http://li3.me/docs/lithium/template/helper/Html::script()