zend加载js文件顺序

时间:2012-07-23 09:40:36

标签: javascript zend-framework load

我在layout.phtml中包含了我的jquery.js,

  <?php $this->headScript()->appendFile($this->baseUrl('js/jquery-1.7.2.min.js')); ?>
  <?= $this->headScript() ?>

我在IndexController中包含了我自己的test.js,

$this->view->headScript()->appendFile('js/test.js');

但是首先加载test.js文件,我怎样才能首先加载zend加载jquery?因为我在test.js文件中使用了查询代码。

1 个答案:

答案 0 :(得分:2)

您可以使用&#34; offsetSetFile(order,file)&#34;。

$this->view->headScript()->offsetSetFile(10, $this->baseUrl('js/jquery-1.7.2.min.js'));
$this->view->headScript()->offsetSetFile(20, $this->baseUrl('js/test.js'));