如何在Yii2中的头文件上加载jquery文件?

时间:2016-03-31 15:56:45

标签: yii2

我想在头文件上加载我的jquery文件,我的所有jquery文件都是通过Yii2资源加载的。任何人都知道吗?

2 个答案:

答案 0 :(得分:2)

在AppAsset文件中添加:

public $depends = [
    'yii\web\JqueryAsset'
];

答案 1 :(得分:0)

将该行添加到AppAsset文件

namespace app\assets;

use yii\web\AssetBundle;

class AppAsset extends AssetBundle
{
    public $basePath = '@webroot';
    public $baseUrl = '@web';
    public $css = [
        'css/site.css',
    ];
    public $js = [
    ];
    public $depends = [
        'yii\web\YiiAsset',
        'yii\bootstrap\BootstrapAsset',
        'yii\web\jQueryAsset' //I means this line
    ];
}