1 2 3 4 5 6 |
$this->Html->script('jquery.js', array('inline' => true)); //この位置に読み込む $this->Html->script('jquery.js', array('inline' => false)); //$this->fetch('script')で出力される $this->Html->script('jquery.js', array('inline' => false, 'block' => 'there')); $this->Html->fetch('there'); //この位置に出力される |
参考サイト
HtmlHelper — CakePHP Cookbook 2.x ドキュメント
http://book.cakephp.org/2.0/ja/core-libraries/helpers/html.html